home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / dspkgctr.z / dspkgctr / gcc / stmt.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  158KB  |  5,019 lines

  1. /* Expands front end tree to back end RTL for GNU C-Compiler
  2.    Copyright (C) 1987, 1988, 1989 Free Software Foundation, Inc.
  3.  
  4.    $Id: stmt.c,v 1.10 91/10/23 17:06:48 pete Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22.  
  23. /* This file handles the generation of rtl code from tree structure
  24.    above the level of expressions, using subroutines in exp*.c and emit-rtl.c.
  25.    It also creates the rtl expressions for parameters and auto variables
  26.    and has full responsibility for allocating stack slots.
  27.  
  28.    The functions whose names start with `expand_' are called by the
  29.    parser to generate RTL instructions for various kinds of constructs.
  30.  
  31.    Some control and binding constructs require calling several such
  32.    functions at different times.  For example, a simple if-then
  33.    is expanded by calling `expand_start_cond' (with the condition-expression
  34.    as argument) before parsing the then-clause and calling `expand_end_cond'
  35.    after parsing the then-clause.
  36.  
  37.    `expand_function_start' is called at the beginning of a function,
  38.    before the function body is parsed, and `expand_function_end' is
  39.    called after parsing the body.
  40.  
  41.    Call `assign_stack_local' to allocate a stack slot for a local variable.
  42.    This is usually done during the RTL generation for the function body,
  43.    but it can also be done in the reload pass when a pseudo-register does
  44.    not get a hard register.
  45.  
  46.    Call `put_var_into_stack' when you learn, belatedly, that a variable
  47.    previously given a pseudo-register must in fact go in the stack.
  48.    This function changes the DECL_RTL to be a stack slot instead of a reg
  49.    then scans all the RTL instructions so far generated to correct them.  */
  50.  
  51. #include "config.h"
  52.  
  53. #include <stdio.h>
  54.  
  55. #include "rtl.h"
  56. #include "tree.h"
  57. #include "flags.h"
  58. #if ! defined( _INTELC32_ )
  59. #include "insn-flags.h"
  60. #include "insn-config.h"
  61. #include "insn-codes.h"
  62. #else
  63. #include "iflags.h"
  64. #include "iconfig.h"
  65. #include "icodes.h"
  66. #endif
  67. #include "expr.h"
  68. #include "regs.h"
  69. #if ! defined( _INTELC32_ )
  70. #include "hard-reg-set.h"
  71. #else
  72. #include "hardrset.h"
  73. #endif
  74. #include "recog.h"
  75.  
  76. #if defined( DSP96000 ) || defined( DSP56000 )
  77. extern rtx local_function_incoming_arg ( );
  78. #endif
  79.  
  80. #define MAX(x,y) (((x) > (y)) ? (x) : (y))
  81. #define MIN(x,y) (((x) < (y)) ? (x) : (y))
  82.  
  83. /* Nonzero if function being compiled pops its args on return.
  84.    May affect compilation of return insn or of function epilogue.  */
  85.  
  86. int current_function_pops_args;
  87.  
  88. /* Nonzero if function being compiled needs to be given an address
  89.    where the value should be stored.  */
  90.  
  91. int current_function_returns_struct;
  92.  
  93. /* Nonzero if function being compiled needs to
  94.    return the address of where it has put a structure value.  */
  95.  
  96. int current_function_returns_pcc_struct;
  97.  
  98. /* Nonzero if function being compiled needs to be passed a static chain.  */
  99.  
  100. int current_function_needs_context;
  101.  
  102. /* Nonzero if function being compiled can call setjmp.  */
  103.  
  104. int current_function_calls_setjmp;
  105.  
  106. /* Nonzero if function being compiled can call alloca,
  107.    either as a subroutine or builtin.  */
  108.  
  109. int current_function_calls_alloca;
  110.  
  111. /* Nonzero if the current function returns a pointer type */
  112.  
  113. int current_function_returns_pointer;
  114.  
  115. /* If function's args have a fixed size, this is that size, in bytes.
  116.    Otherwise, it is -1.
  117.    May affect compilation of return insn or of function epilogue.  */
  118.  
  119. int current_function_args_size;
  120.  
  121. /* # bytes the prologue should push and pretend that the caller pushed them.
  122.    The prologue must do this, but only if parms can be passed in registers.  */
  123.  
  124. int current_function_pretend_args_size;
  125.  
  126. /* Name of function now being compiled.  */
  127.  
  128. char *current_function_name;
  129.  
  130. /* Label that will go on parm cleanup code, if any.
  131.    Jumping to this label runs cleanup code for parameters, if
  132.    such code must be run.  Following this code is the logical return label.  */
  133.  
  134. rtx cleanup_label;
  135.  
  136. /* Label that will go on function epilogue.
  137.    Jumping to this label serves as a "return" instruction
  138.    on machines which require execution of the epilogue on all returns.  */
  139.  
  140. rtx return_label;
  141.  
  142. /* List (chain of EXPR_LISTs) of pseudo-regs of SAVE_EXPRs.
  143.    So we can mark them all live at the end of the function, if nonopt.  */
  144. rtx save_expr_regs;
  145.  
  146. /* List (chain of EXPR_LISTs) of all stack slots in this function.
  147.    Made for the sake of unshare_all_rtl.  */
  148. rtx stack_slot_list;
  149.  
  150. /* Filename and line number of last line-number note,
  151.    whether we actually emitted it or not.  */
  152. char *emit_filename;
  153. int emit_lineno;
  154.  
  155. /* Insn after which register parms and SAVE_EXPRs are born, if nonopt.  */
  156. static rtx parm_birth_insn;
  157.  
  158. /* The FUNCTION_DECL node for the function being compiled.  */
  159.  
  160. static tree this_function;
  161.  
  162. /* Offset to end of allocated area of stack frame.
  163.    If stack grows down, this is the address of the last stack slot allocated.
  164.    If stack grows up, this is the address for the next slot.  */
  165. static int frame_offset;
  166.  
  167. /* Nonzero if a stack slot has been generated whose address is not
  168.    actually valid.  It means that the generated rtl must all be scanned
  169.    to detect and correct the invalid addresses where they occur.  */
  170. static int invalid_stack_slot;
  171.  
  172. /* Label to jump back to for tail recursion, or 0 if we have
  173.    not yet needed one for this function.  */
  174. static rtx tail_recursion_label;
  175.  
  176. /* Place after which to insert the tail_recursion_label if we need one.  */
  177. static rtx tail_recursion_reentry;
  178.  
  179. /* Each time we expand an expression-statement,
  180.    record the expr's type and its RTL value here.  */
  181.  
  182. static tree last_expr_type;
  183. static rtx last_expr_value;
  184.  
  185. /* Chain of all RTL_EXPRs that have insns in them.  */
  186. static tree rtl_expr_chain;
  187.  
  188. /* Last insn of those whose job was to put parms into their nominal homes.  */
  189. static rtx last_parm_insn;
  190.  
  191. /* Functions and data structures for expanding case statements.  */
  192.  
  193. /* Case label structure, used to hold info on labels within case
  194.    statements.  We handle "range" labels; for a single-value label
  195.    as in C, the high and low limits are the same.  */
  196.  
  197. struct case_node
  198. {
  199.   struct case_node    *left;
  200.   struct case_node    *right;
  201.   struct case_node    *parent;
  202.   tree            low;
  203.   tree            high;
  204.   tree            test_label;
  205.   tree            code_label;
  206. };
  207.  
  208. typedef struct case_node case_node;
  209. typedef struct case_node *case_node_ptr;
  210.  
  211. #if defined( _MSDOS )
  212. void error ( char *, ... );
  213. void error_with_decl ( tree decl, ... );
  214. void warning_with_file_and_line ( char * file, ... );
  215. void warning ( char * s, ... );
  216. void warning_with_decl ( tree decl, ... );
  217. #endif
  218.  
  219. static void balance_case_nodes ();
  220. static void emit_case_nodes ();
  221. static void group_case_nodes ();
  222. static void emit_jump_if_reachable ();
  223.  
  224. /* Stack of control and binding constructs we are currently inside.
  225.  
  226.    These constructs begin when you call `expand_start_WHATEVER'
  227.    and end when you call `expand_end_WHATEVER'.  This stack records
  228.    info about how the construct began that tells the end-function
  229.    what to do.  It also may provide information about the construct
  230.    to alter the behavior of other constructs within the body.
  231.    For example, they may affect the behavior of C `break' and `continue'.
  232.  
  233.    Each construct gets one `struct nesting' object.
  234.    All of these objects are chained through the `all' field.
  235.    `nesting_stack' points to the first object (innermost construct).
  236.    The position of an entry on `nesting_stack' is in its `depth' field.
  237.  
  238.    Each type of construct has its own individual stack.
  239.    For example, loops have `loop_stack'.  Each object points to the
  240.    next object of the same type through the `next' field.
  241.  
  242.    Some constructs are visible to `break' exit-statements and others
  243.    are not.  Which constructs are visible depends on the language.
  244.    Therefore, the data structure allows each construct to be visible
  245.    or not, according to the args given when the construct is started.
  246.    The construct is visible if the `exit_label' field is non-null.
  247.    In that case, the value should be a CODE_LABEL rtx.  */
  248.  
  249. struct nesting
  250. {
  251.   struct nesting *all;
  252.   struct nesting *next;
  253.   int depth;
  254.   rtx exit_label;
  255.   union
  256.     {
  257.       /* For conds (if-then and if-then-else statements).  */
  258.       struct
  259.     {
  260.       /* Label on the else-part, if any, else 0.  */
  261.       rtx else_label;
  262.       /* Label at the end of the whole construct.  */
  263.       rtx after_label;
  264.     } cond;
  265.       /* For loops.  */
  266.       struct
  267.     {
  268.       /* Label at the top of the loop; place to loop back to.  */
  269.       rtx start_label;
  270.       /* Label at the end of the whole construct.  */
  271.       rtx end_label;
  272.       /* Label for `continue' statement to jump to;
  273.          this is in front of the stepper of the loop.  */
  274.       rtx continue_label;
  275.     } loop;
  276.       /* For variable binding contours.  */
  277.       struct
  278.     {
  279.       /* Nonzero => value to restore stack to on exit.  */
  280.       rtx stack_level;
  281.       /* The NOTE that starts this contour.
  282.          Used by expand_goto to check whether the destination
  283.          is within each contour or not.  */
  284.       rtx first_insn;
  285.       /* Innermost containing binding contour that has a stack level.  */
  286.       struct nesting *innermost_stack_block;
  287.       /* List of cleanups to be run on exit from this contour.
  288.          This is a list of expressions to be evaluated.
  289.          The TREE_PURPOSE of each link is the ..._DECL node
  290.          which the cleanup pertains to.  */
  291.       tree cleanups;
  292.       /* List of cleanup-lists of blocks containing this block,
  293.          as they were at the locus where this block appears.
  294.          There is an element for each containing block,
  295.          ordered innermost containing block first.
  296.          The element's TREE_VALUE is the cleanup-list of that block,
  297.          which may be null.  */
  298.       tree outer_cleanups;
  299.       /* Chain of labels defined inside this binding contour.
  300.          For contours that have stack levels or cleanups.  */
  301.       struct label_chain *label_chain;
  302.     } block;
  303.       /* For switch (C) or case (Pascal) statements,
  304.      and also for dummies (see `expand_start_case_dummy').  */
  305.       struct
  306.     {
  307.       /* The insn after which the case dispatch should finally
  308.          be emitted.  Zero for a dummy.  */
  309.       rtx start;
  310.       /* A list of case labels, kept in ascending order by value
  311.          as the list is built.
  312.          During expand_end_case, this list may be rearranged into a
  313.          nearly balanced binary tree.  */
  314.       struct case_node *case_list;
  315.       /* Label to jump to if no case matches.  */
  316.       tree default_label;
  317.       /* The expression to be dispatched on.  */
  318.       tree index_expr;
  319.       /* Type that INDEX_EXPR should be converted to.  */
  320.       tree nominal_type;
  321.       /* Number of range exprs in case statement.  */
  322.       short num_ranges;
  323.     } case_stmt;
  324.     } data;
  325. };
  326.  
  327. /* Chain of all pending binding contours.  */
  328. struct nesting *block_stack;
  329.  
  330. /* Chain of all pending binding contours that restore stack levels
  331.    or have cleanups.  */
  332. struct nesting *stack_block_stack;
  333.  
  334. /* Chain of all pending conditional statements.  */
  335. struct nesting *cond_stack;
  336.  
  337. /* Chain of all pending loops.  */
  338. struct nesting *loop_stack;
  339.  
  340. /* Chain of all pending case or switch statements.  */
  341. struct nesting *case_stack;
  342.  
  343. /* Separate chain including all of the above,
  344.    chained through the `all' field.  */
  345. struct nesting *nesting_stack;
  346.  
  347. /* Number of entries on nesting_stack now.  */
  348. int nesting_depth;
  349.  
  350. /* Pop one of the sub-stacks, such as `loop_stack' or `cond_stack';
  351.    and pop off `nesting_stack' down to the same level.  */
  352.  
  353. #define POPSTACK(STACK)                    \
  354. do { int initial_depth = nesting_stack->depth;        \
  355.      do { struct nesting *this = STACK;            \
  356.       STACK = this->next;                \
  357.       nesting_stack = this->all;            \
  358.       nesting_depth = this->depth;            \
  359.       free (this); }                \
  360.      while (nesting_depth > initial_depth); } while (0)
  361.  
  362. static int warn_if_unused_value ();
  363. static void expand_goto_internal ();
  364. static int expand_fixup ();
  365. static void fixup_gotos ();
  366. static void expand_cleanups ();
  367. static void fixup_cleanups ();
  368. static void expand_null_return_1 ();
  369. static int tail_recursion_args ();
  370. static void fixup_stack_slots ();
  371. static rtx fixup_stack_1 ();
  372. static rtx fixup_memory_subreg ();
  373. static rtx walk_fixup_memory_subreg ();
  374. static void fixup_var_refs ();
  375. static void fixup_var_refs_insns ();
  376. static rtx fixup_var_refs_1 ();
  377. static rtx parm_stack_loc ();
  378. static void optimize_bit_field ();
  379. static void do_jump_if_equal ();
  380.  
  381. /* Emit a no-op instruction.  */
  382.  
  383. rtx
  384. emit_nop ()
  385. {
  386.   rtx last_insn = get_last_insn ();
  387.   if (!optimize
  388.       && (GET_CODE (last_insn) == CODE_LABEL
  389.       || prev_real_insn (last_insn) == 0))
  390.     emit_insn (gen_nop ());
  391. }
  392.  
  393. /* Return the rtx-label that corresponds to a LABEL_DECL,
  394.    creating it if necessary.  */
  395.  
  396. static rtx
  397. label_rtx (label)
  398.      tree label;
  399. {
  400.   if (TREE_CODE (label) != LABEL_DECL)
  401.     abort ();
  402.  
  403.   if (DECL_RTL (label))
  404.     return DECL_RTL (label);
  405.  
  406.   return DECL_RTL (label) = gen_label_rtx ();
  407. }
  408.  
  409. /* Add an unconditional jump to LABEL as the next sequential instruction.  */
  410.  
  411. void
  412. emit_jump (label)
  413.      rtx label;
  414. {
  415.   do_pending_stack_adjust ();
  416.   emit_jump_insn (gen_jump (label));
  417.   emit_barrier ();
  418. }
  419.  
  420. /* Handle goto statements and the labels that they can go to.  */
  421.  
  422. /* In some cases it is impossible to generate code for a forward goto 
  423.    until the label definition is seen.  This happens when it may be necessary
  424.    for the goto to reset the stack pointer: we don't yet know how to do that.
  425.    So expand_goto puts an entry on this fixup list.
  426.    Each time a binding contour that resets the stack is exited,
  427.    we check each fixup.
  428.    If the target label has now been defined, we can insert the proper code.  */
  429.  
  430. struct goto_fixup
  431. {
  432.   /* Points to following fixup.  */
  433.   struct goto_fixup *next;
  434.   /* Points to the insn before the jump insn.
  435.      If more code must be inserted, it goes after this insn.  */
  436.   rtx before_jump;
  437.   /* The LABEL_DECL that this jump is jumping to, or 0
  438.      for break, continue or return.  */
  439.   tree target;
  440.   /* The CODE_LABEL rtx that this is jumping to.  */
  441.   rtx target_rtl;
  442.   /* The outermost stack level that should be restored for this jump.
  443.      Each time a binding contour that resets the stack is exited,
  444.      if the target label is *not* yet defined, this slot is updated.  */
  445.   rtx stack_level;
  446.   /* List of lists of cleanup expressions to be run by this goto.
  447.      There is one element for each block that this goto is within.
  448.      The TREE_VALUE contains the cleanup list of that block as of the
  449.      time this goto was seen.
  450.      The TREE_ADDRESSABLE flag is 1 for a block that has been exited.  */
  451.   tree cleanup_list_list;
  452. };
  453.  
  454. static struct goto_fixup *goto_fixup_chain;
  455.  
  456. /* Within any binding contour that must restore a stack level,
  457.    all labels are recorded with a chain of these structures.  */
  458.  
  459. struct label_chain
  460. {
  461.   /* Points to following fixup.  */
  462.   struct label_chain *next;
  463.   tree label;
  464. };
  465.  
  466. /* Specify the location in the RTL code of a label BODY,
  467.    which is a LABEL_DECL tree node.
  468.  
  469.    This is used for the kind of label that the user can jump to with a
  470.    goto statement, and for alternatives of a switch or case statement.
  471.    RTL labels generated for loops and conditionals don't go through here;
  472.    they are generated directly at the RTL level, by other functions below.
  473.  
  474.    Note that this has nothing to do with defining label *names*.
  475.    Languages vary in how they do that and what that even means.  */
  476.  
  477. void
  478. expand_label (body)
  479.      tree body;
  480. {
  481.   struct label_chain *p;
  482.  
  483.   do_pending_stack_adjust ();
  484.   emit_label (label_rtx (body));
  485.  
  486.   if (stack_block_stack != 0)
  487.     {
  488.       p = (struct label_chain *) oballoc (sizeof (struct label_chain));
  489.       p->next = stack_block_stack->data.block.label_chain;
  490.       stack_block_stack->data.block.label_chain = p;
  491.       p->label = body;
  492.     }
  493. }
  494.  
  495. /* Generate RTL code for a `goto' statement with target label BODY.
  496.    BODY should be a LABEL_DECL tree node that was or will later be
  497.    defined with `expand_label'.  */
  498.  
  499. void
  500. expand_goto (body)
  501.      tree body;
  502. {
  503.   expand_goto_internal (body, label_rtx (body), 0);
  504. }
  505.  
  506. /* Generate RTL code for a `goto' statement with target label BODY.
  507.    LABEL should be a LABEL_REF.
  508.    LAST_INSN, if non-0, is the rtx we should consider as the last
  509.    insn emitted (for the purposes of cleaning up a return).  */
  510.  
  511. static void
  512. expand_goto_internal (body, label, last_insn)
  513.      tree body;
  514.      rtx label;
  515.      rtx last_insn;
  516. {
  517.   struct nesting *block;
  518.   rtx stack_level = 0;
  519.  
  520.   if (GET_CODE (label) != CODE_LABEL)
  521.     abort ();
  522.  
  523.   /* If label has already been defined, we can tell now
  524.      whether and how we must alter the stack level.  */
  525.  
  526.   if (PREV_INSN (label) != 0)
  527.     {
  528.       /* Find the innermost pending block that contains the label.
  529.      (Check containment by comparing insn-uids.)
  530.      Then restore the outermost stack level within that block,
  531.      and do cleanups of all blocks contained in it.  */
  532.       for (block = block_stack; block; block = block->next)
  533.     {
  534.       if (INSN_UID (block->data.block.first_insn) < INSN_UID (label))
  535.         break;
  536.       if (block->data.block.stack_level != 0)
  537.         stack_level = block->data.block.stack_level;
  538.       /* Execute the cleanups for blocks we are exiting.  */
  539.       if (block->data.block.cleanups != 0)
  540.         expand_cleanups (block->data.block.cleanups, 0);
  541.     }
  542.  
  543.       if (stack_level)
  544.     emit_move_insn (stack_pointer_rtx, stack_level);
  545.  
  546.       if (body != 0 && TREE_PACKED (body))
  547.     error ("jump to `%s' invalidly jumps into binding contour",
  548.            IDENTIFIER_POINTER (DECL_NAME (body)));
  549.     }
  550.   /* Label not yet defined: may need to put this goto
  551.      on the fixup list.  */
  552.   else if (! expand_fixup (body, label, last_insn))
  553.     {
  554.       /* No fixup needed.  Record that the label is the target
  555.      of at least one goto that has no fixup.  */
  556.       if (body != 0)
  557.     TREE_ADDRESSABLE (body) = 1;
  558.     }
  559.  
  560.   emit_jump (label);
  561. }
  562.  
  563. /* Generate if necessary a fixup for a goto
  564.    whose target label in tree structure (if any) is TREE_LABEL
  565.    and whose target in rtl is RTL_LABEL.
  566.  
  567.    If LAST_INSN is nonzero, we pretend that the jump appears
  568.    after insn LAST_INSN instead of at the current point in the insn stream.
  569.  
  570.    The fixup will be used later to insert insns at this point
  571.    to restore the stack level as appropriate for the target label.
  572.  
  573.    Value is nonzero if a fixup is made.  */
  574.  
  575. static int
  576. expand_fixup (tree_label, rtl_label, last_insn)
  577.      tree tree_label;
  578.      rtx rtl_label;
  579.      rtx last_insn;
  580. {
  581.   struct nesting *block, *end_block;
  582.  
  583.   /* See if we can recognize which block the label will be output in.
  584.      This is possible in some very common cases.
  585.      If we succeed, set END_BLOCK to that block.
  586.      Otherwise, set it to 0.  */
  587.  
  588.   if (cond_stack
  589.       && (rtl_label == cond_stack->data.cond.else_label
  590.       || rtl_label == cond_stack->data.cond.after_label))
  591.     end_block = cond_stack;
  592.   /* If we are in a loop, recognize certain labels which
  593.      are likely targets.  This reduces the number of fixups
  594.      we need to create.  */
  595.   else if (loop_stack
  596.       && (rtl_label == loop_stack->data.loop.start_label
  597.       || rtl_label == loop_stack->data.loop.end_label
  598.       || rtl_label == loop_stack->data.loop.continue_label))
  599.     end_block = loop_stack;
  600.   else
  601.     end_block = 0;
  602.  
  603.   /* Now set END_BLOCK to the binding level to which we will return.  */
  604.  
  605.   if (end_block)
  606.     {
  607.       struct nesting *next_block = end_block->all;
  608.       block = block_stack;
  609.  
  610.       /* First see if the END_BLOCK is inside the innermost binding level.
  611.      If so, then no cleanups or stack levels are relevant.  */
  612.       while (next_block && next_block != block)
  613.     next_block = next_block->all;
  614.  
  615.       if (next_block)
  616.     return 0;
  617.  
  618.       /* Otherwise, set END_BLOCK to the innermost binding level
  619.      which is outside the relevant control-structure nesting.  */
  620.       next_block = block_stack->next;
  621.       for (block = block_stack; block != end_block; block = block->all)
  622.     if (block == next_block)
  623.       next_block = next_block->next;
  624.       end_block = next_block;
  625.     }
  626.  
  627.   /* Does any containing block have a stack level or cleanups?
  628.      If not, no fixup is needed, and that is the normal case
  629.      (the only case, for standard C).  */
  630.   for (block = block_stack; block != end_block; block = block->next)
  631.     if (block->data.block.stack_level != 0
  632.     || block->data.block.cleanups != 0)
  633.       break;
  634.  
  635.   if (block != end_block)
  636.     {
  637.       /* Ok, a fixup is needed.  Add a fixup to the list of such.  */
  638.       struct goto_fixup *fixup
  639.     = (struct goto_fixup *) oballoc (sizeof (struct goto_fixup));
  640.       /* In case an old stack level is restored, make sure that comes
  641.      after any pending stack adjust.  */
  642.       do_pending_stack_adjust ();
  643.       fixup->before_jump = last_insn ? last_insn : get_last_insn ();
  644.       fixup->target = tree_label;
  645.       fixup->target_rtl = rtl_label;
  646.       fixup->stack_level = 0;
  647.       fixup->cleanup_list_list
  648.     = (block->data.block.outer_cleanups || block->data.block.cleanups
  649.        ? tree_cons (0, block->data.block.cleanups,
  650.             block->data.block.outer_cleanups)
  651.        : 0);
  652.       fixup->next = goto_fixup_chain;
  653.       goto_fixup_chain = fixup;
  654.     }
  655.  
  656.   return block != 0;
  657. }
  658.  
  659. /* When exiting a binding contour, process all pending gotos requiring fixups.
  660.    THISBLOCK is the structure that describes the block being exited.
  661.    STACK_LEVEL is the rtx for the stack level to restore exiting this contour.
  662.    CLEANUP_LIST is a list of expressions to evaluate on exiting this contour.
  663.    FIRST_INSN is the insn that began this contour.
  664.  
  665.    Gotos that jump out of this contour must restore the
  666.    stack level and do the cleanups before actually jumping.
  667.  
  668.    DONT_JUMP_IN nonzero means report error there is a jump into this
  669.    contour from before the beginning of the contour.
  670.    This is also done if STACK_LEVEL is nonzero.  */
  671.  
  672. static void
  673. fixup_gotos (thisblock, stack_level, cleanup_list, first_insn, dont_jump_in)
  674.      struct nesting *thisblock;
  675.      rtx stack_level;
  676.      tree cleanup_list;
  677.      rtx first_insn;
  678.      int dont_jump_in;
  679. {
  680.   register struct goto_fixup *f, *prev;
  681.  
  682.   /* F is the fixup we are considering; PREV is the previous one.  */
  683.  
  684.   for (prev = 0, f = goto_fixup_chain; f; prev = f, f = f->next)
  685.     {
  686.       /* Test for a fixup that is inactive because it is already handled.  */
  687.       if (f->before_jump == 0)
  688.     {
  689.       /* Delete inactive fixup from the chain, if that is easy to do.  */
  690.       if (prev != 0)
  691.         prev->next = f->next;
  692.     }
  693.       /* Has this fixup's target label been defined?
  694.      If so, we can finalize it.  */
  695.       else if (PREV_INSN (f->target_rtl) != 0)
  696.     {
  697.       /* If this fixup jumped into this contour from before the beginning
  698.          of this contour, report an error.  */
  699.       /* ??? Bug: this does not detect jumping in through intermediate
  700.          blocks that have stack levels or cleanups.
  701.          It detects only a problem with the innermost block
  702.          around the label.  */
  703.       if (f->target != 0
  704.           && (dont_jump_in || stack_level || cleanup_list)
  705.           && INSN_UID (first_insn) > INSN_UID (f->before_jump)
  706.           && ! TREE_ADDRESSABLE (f->target))
  707.         {
  708.           error_with_decl (f->target,
  709.                    "label `%s' used before containing binding contour");
  710.           /* Prevent multiple errors for one label.  */
  711.           TREE_ADDRESSABLE (f->target) = 1;
  712.         }
  713.  
  714.       /* Execute cleanups for blocks this jump exits.  */
  715.       if (f->cleanup_list_list)
  716.         {
  717.           tree lists;
  718.           for (lists = f->cleanup_list_list; lists; lists = TREE_CHAIN (lists))
  719.         /* Marked elements correspond to blocks that have been closed.
  720.            Do their cleanups.  */
  721.         if (TREE_ADDRESSABLE (lists)
  722.             && TREE_VALUE (lists) != 0)
  723.           fixup_cleanups (TREE_VALUE (lists), &f->before_jump);
  724.         }
  725.  
  726.       /* Restore stack level for the biggest contour that this
  727.          jump jumps out of.  */
  728.       if (f->stack_level)
  729.         emit_insn_after (gen_move_insn (stack_pointer_rtx, f->stack_level),
  730.                  f->before_jump);
  731.       f->before_jump = 0;
  732.     }
  733.       /* Label has still not appeared.  If we are exiting a block with
  734.      a stack level to restore, mark this stack level as needing
  735.      restoration when the fixup is later finalized.
  736.      Also mark the cleanup_list_list element for F
  737.      that corresponds to this block, so that ultimately
  738.      this block's cleanups will be executed by the code above.  */
  739.       /* Note: if THISBLOCK == 0 and we have a label that hasn't appeared,
  740.      it means the label is undefined.  That's erroneous, but possible.  */
  741.       else if (thisblock != 0)
  742.     {
  743.       tree lists = f->cleanup_list_list;
  744.       for (; lists; lists = TREE_CHAIN (lists))
  745.         /* If the following elt. corresponds to our containing block
  746.            then the elt. must be for this block.  */
  747.         if (TREE_CHAIN (lists) == thisblock->data.block.outer_cleanups)
  748.           TREE_ADDRESSABLE (lists) = 1;
  749.  
  750.       if (stack_level)
  751.         f->stack_level = stack_level;
  752.     }
  753.     }
  754. }
  755.  
  756. /* Generate RTL for an asm statement (explicit assembler code).
  757.    BODY is a STRING_CST node containing the assembler code text.  */
  758.  
  759. void
  760. expand_asm (body)
  761.      tree body;
  762. {
  763.   emit_insn (gen_rtx (ASM_INPUT, VOIDmode,
  764.               TREE_STRING_POINTER (body)));
  765.   last_expr_type = 0;
  766. }
  767.  
  768. /* Generate RTL for an asm statement with arguments.
  769.    STRING is the instruction template.
  770.    OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
  771.    Each output or input has an expression in the TREE_VALUE and
  772.    a constraint-string in the TREE_PURPOSE.
  773.    CLOBBERS is a list of STRING_CST nodes each naming a hard register
  774.    that is clobbered by this insn.
  775.  
  776.    Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
  777.    Some elements of OUTPUTS may be replaced with trees representing temporary
  778.    values.  The caller should copy those temporary values to the originally
  779.    specified lvalues.
  780.  
  781.    VOL nonzero means the insn is volatile; don't optimize it.  */
  782.  
  783. void
  784. expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
  785.      tree string, outputs, inputs, clobbers;
  786.      int vol;
  787.      char *filename;
  788.      int line;
  789. {
  790.   rtvec argvec, constraints;
  791.   rtx body;
  792.   int ninputs = list_length (inputs);
  793.   int noutputs = list_length (outputs);
  794.   int nclobbers = list_length (clobbers);
  795.   tree tail;
  796.   register int i;
  797.   /* Vector of RTX's of evaluated output operands.  */
  798.   rtx *output_rtx = (rtx *) alloca (noutputs * sizeof (rtx));
  799.   /* The insn we have emitted.  */
  800.   rtx insn;
  801.  
  802.   last_expr_type = 0;
  803.  
  804.   for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
  805.     {
  806.       tree val = TREE_VALUE (tail);
  807.       int j;
  808.       int found_equal;
  809.  
  810.       /* If there's an erroneous arg, emit no insn.  */
  811.       if (TREE_TYPE (val) == error_mark_node)
  812.     return;
  813.  
  814.       /* Make sure constraint has `=' and does not have `+'.  */
  815.  
  816.       found_equal = 0;
  817.       for (j = 0; j < TREE_STRING_LENGTH (TREE_PURPOSE (tail)); j++)
  818.     {
  819.       if (TREE_STRING_POINTER (TREE_PURPOSE (tail))[j] == '+')
  820.         {
  821.           error ("output operand constraint contains `+'");
  822.           return;
  823.         }
  824.       if (TREE_STRING_POINTER (TREE_PURPOSE (tail))[j] == '=')
  825.         found_equal = 1;
  826.     }
  827.       if (! found_equal)
  828.     {
  829.       error ("output operand constraint lacks `='");
  830.       return;
  831.     }
  832.  
  833.       /* If an output operand is not a variable or indirect ref,
  834.      create a SAVE_EXPR which is a pseudo-reg
  835.      to act as an intermediate temporary.
  836.      Make the asm insn write into that, then copy it to
  837.      the real output operand.  */
  838.  
  839.       if (TREE_CODE (val) != VAR_DECL
  840.       && TREE_CODE (val) != PARM_DECL
  841.       && TREE_CODE (val) != INDIRECT_REF)
  842.     {
  843.       rtx reg = gen_reg_rtx (TYPE_MODE (TREE_TYPE (val)));
  844.       /* `build' isn't safe; it really expects args to be trees.  */
  845.       tree t = build_nt (SAVE_EXPR, val, reg);
  846.  
  847.       save_expr_regs = gen_rtx (EXPR_LIST, VOIDmode, reg, save_expr_regs);
  848.       TREE_VALUE (tail) = t;
  849.       TREE_TYPE (t) = TREE_TYPE (val);
  850.     }
  851.       output_rtx[i] = expand_expr (TREE_VALUE (tail), 0, VOIDmode, 0);
  852.     }
  853.  
  854.   if (ninputs + noutputs > MAX_RECOG_OPERANDS)
  855.     {
  856.       error ("more than %d operands in `asm'", MAX_RECOG_OPERANDS);
  857.       return;
  858.     }
  859.  
  860.   /* Make vectors for the expression-rtx and constraint strings.  */
  861.  
  862.   argvec = rtvec_alloc (ninputs);
  863.   constraints = rtvec_alloc (ninputs);
  864.  
  865.   body = gen_rtx (ASM_OPERANDS, VOIDmode,
  866.           TREE_STRING_POINTER (string), "", 0, argvec, constraints,
  867.           filename, line);
  868.   MEM_VOLATILE_P (body) = vol;
  869.  
  870.   /* Eval the inputs and put them into ARGVEC.
  871.      Put their constraints into ASM_INPUTs and store in CONSTRAINTS.  */
  872.  
  873.   i = 0;
  874.   for (tail = inputs; tail; tail = TREE_CHAIN (tail))
  875.     {
  876.       int j;
  877.  
  878.       /* If there's an erroneous arg, emit no insn,
  879.      because the ASM_INPUT would get VOIDmode
  880.      and that could cause a crash in reload.  */
  881.       if (TREE_TYPE (TREE_VALUE (tail)) == error_mark_node)
  882.     return;
  883.       if (TREE_PURPOSE (tail) == NULL_TREE)
  884.     {
  885.       error ("hard register `%s' listed as input operand to `asm'",
  886.          TREE_STRING_POINTER (TREE_VALUE (tail)) );
  887.       return;
  888.     }
  889.  
  890.       /* Make sure constraint has neither `=' nor `+'.  */
  891.  
  892.       for (j = 0; j < TREE_STRING_LENGTH (TREE_PURPOSE (tail)); j++)
  893.     if (TREE_STRING_POINTER (TREE_PURPOSE (tail))[j] == '='
  894.         || TREE_STRING_POINTER (TREE_PURPOSE (tail))[j] == '+')
  895.       {
  896.         error ("input operand constraint contains `%c'",
  897.            TREE_STRING_POINTER (TREE_PURPOSE (tail))[j]);
  898.         return;
  899.       }
  900.  
  901.       XVECEXP (body, 3, i)      /* argvec */
  902.     = expand_expr (TREE_VALUE (tail), 0, VOIDmode, 0);
  903.       XVECEXP (body, 4, i)      /* constraints */
  904.     = gen_rtx (ASM_INPUT, TYPE_MODE (TREE_TYPE (TREE_VALUE (tail))),
  905.            TREE_STRING_POINTER (TREE_PURPOSE (tail)));
  906.       i++;
  907.     }
  908.  
  909.   /* Protect all the operands from the queue,
  910.      now that they have all been evaluated.  */
  911.  
  912.   for (i = 0; i < ninputs; i++)
  913.     XVECEXP (body, 3, i) = protect_from_queue (XVECEXP (body, 3, i), 0);
  914.  
  915.   for (i = 0; i < noutputs; i++)
  916.     output_rtx[i] = protect_from_queue (output_rtx[i], 1);
  917.  
  918.   /* Now, for each output, construct an rtx
  919.      (set OUTPUT (asm_operands INSN OUTPUTNUMBER OUTPUTCONSTRAINT
  920.                    ARGVEC CONSTRAINTS))
  921.      If there is more than one, put them inside a PARALLEL.  */
  922.  
  923.   if (noutputs == 1 && nclobbers == 0)
  924.     {
  925.       XSTR (body, 1) = TREE_STRING_POINTER (TREE_PURPOSE (outputs));
  926.       insn = emit_insn (gen_rtx (SET, VOIDmode, output_rtx[0], body));
  927.     }
  928.   else if (noutputs == 0 && nclobbers == 0)
  929.     {
  930.       /* No output operands: put in a raw ASM_OPERANDS rtx.  */
  931.       insn = emit_insn (body);
  932.     }
  933.   else
  934.     {
  935.       rtx obody = body;
  936.       int num = noutputs;
  937.       if (num == 0) num = 1;
  938.       body = gen_rtx (PARALLEL, VOIDmode, rtvec_alloc (num + nclobbers));
  939.  
  940.       /* For each output operand, store a SET.  */
  941.  
  942.       for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
  943.     {
  944.       XVECEXP (body, 0, i)
  945.         = gen_rtx (SET, VOIDmode,
  946.                output_rtx[i],
  947.                gen_rtx (ASM_OPERANDS, VOIDmode,
  948.                 TREE_STRING_POINTER (string),
  949.                 TREE_STRING_POINTER (TREE_PURPOSE (tail)),
  950.                 i, argvec, constraints,
  951.                 filename, line));
  952.       MEM_VOLATILE_P (SET_SRC (XVECEXP (body, 0, i))) = vol;
  953.     }
  954.  
  955.       /* If there are no outputs (but there are some clobbers)
  956.      store the bare ASM_OPERANDS into the PARALLEL.  */
  957.  
  958.       if (i == 0)
  959.     XVECEXP (body, 0, i++) = obody;
  960.  
  961.       /* Store (clobber REG) for each clobbered register specified.  */
  962.  
  963.       for (tail = clobbers; tail; tail = TREE_CHAIN (tail), i++)
  964.     {
  965.       int j;
  966.       char *regname = TREE_STRING_POINTER (TREE_VALUE (tail));
  967.       extern char *reg_names[];
  968.           
  969.       for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
  970.         if (!strcmp (regname, reg_names[j]))
  971.           break;
  972.           
  973.       if (j == FIRST_PSEUDO_REGISTER)
  974.         {
  975.           error ("unknown register name `%s' in `asm'", regname);
  976.           return;
  977.         }
  978.  
  979.       /* Use QImode since that's guaranteed to clobber just one reg.  */
  980.       XVECEXP (body, 0, i)
  981.         = gen_rtx (CLOBBER, VOIDmode, gen_rtx (REG, QImode, j));
  982.     }
  983.  
  984.       insn = emit_insn (body);
  985.     }
  986.  
  987.   last_expr_type = 0;
  988. }
  989.  
  990. /* Nonzero if within a ({...}) grouping, in which case we must
  991.    always compute a value for each expr-stmt in case it is the last one.  */
  992.  
  993. int expr_stmts_for_value;
  994.  
  995. /* Generate RTL to evaluate the expression EXP
  996.    and remember it in case this is the VALUE in a ({... VALUE; }) constr.  */
  997.  
  998. void
  999. expand_expr_stmt (exp)
  1000.      tree exp;
  1001. {
  1002.   /* If -W, warn about statements with no side effects,
  1003.      except inside a ({...}) where they may be useful.  */
  1004.   if (expr_stmts_for_value == 0 && exp != error_mark_node)
  1005.     {
  1006.       if (! TREE_VOLATILE (exp) && (extra_warnings || warn_unused))
  1007.     warning_with_file_and_line (emit_filename, emit_lineno,
  1008.                     "statement with no effect");
  1009.       else if (warn_unused)
  1010.     warn_if_unused_value (exp);
  1011.     }
  1012.   last_expr_type = TREE_TYPE (exp);
  1013.   if (! flag_syntax_only)
  1014.     last_expr_value = expand_expr (exp, expr_stmts_for_value ? 0 : const0_rtx,
  1015.                    VOIDmode, 0);
  1016.   emit_queue ();
  1017. }
  1018.  
  1019. /* Warn if EXP contains any computations whose results are not used.
  1020.    Return 1 if a warning is printed; 0 otherwise.  */
  1021.  
  1022. static int
  1023. warn_if_unused_value (exp)
  1024.      tree exp;
  1025. {
  1026.   switch (TREE_CODE (exp))
  1027.     {
  1028.     case PREINCREMENT_EXPR:
  1029.     case POSTINCREMENT_EXPR:
  1030.     case PREDECREMENT_EXPR:
  1031.     case POSTDECREMENT_EXPR:
  1032.     case MODIFY_EXPR:
  1033.     case INIT_EXPR:
  1034.     case NEW_EXPR:
  1035.     case DELETE_EXPR:
  1036.     case PUSH_EXPR:
  1037.     case POP_EXPR:
  1038.     case CALL_EXPR:
  1039.     case METHOD_CALL_EXPR:
  1040.     case RTL_EXPR:
  1041.     case WRAPPER_EXPR:
  1042.     case ANTI_WRAPPER_EXPR:
  1043.     case WITH_CLEANUP_EXPR:
  1044.       /* We don't warn about COND_EXPR because it may be a useful
  1045.      construct if either arm contains a side effect.  */
  1046.     case COND_EXPR:
  1047.       return 0;
  1048.  
  1049.     case TRUTH_ORIF_EXPR:
  1050.     case TRUTH_ANDIF_EXPR:
  1051.       /* In && or ||, warn if 2nd operand has no side effect.  */
  1052.       return warn_if_unused_value (TREE_OPERAND (exp, 1));
  1053.  
  1054.     case COMPOUND_EXPR:
  1055.       if (warn_if_unused_value (TREE_OPERAND (exp, 0)))
  1056.     return 1;
  1057.       return warn_if_unused_value (TREE_OPERAND (exp, 1));
  1058.  
  1059.     case NOP_EXPR:
  1060.     case CONVERT_EXPR:
  1061.       /* Don't warn about values cast to void.  */
  1062.       if (TREE_TYPE (exp) == void_type_node)
  1063.     return 0;
  1064.       /* Assignment to a cast results in a cast of a modify.
  1065.      Don't complain about that.  */
  1066.       if (TREE_CODE (TREE_OPERAND (exp, 0)) == MODIFY_EXPR)
  1067.     return 0;
  1068.  
  1069.     default:
  1070.       warning_with_file_and_line (emit_filename, emit_lineno,
  1071.                   "value computed is not used");
  1072.       return 1;
  1073.     }
  1074. }
  1075.  
  1076. /* Clear out the memory of the last expression evaluated.  */
  1077.  
  1078. void
  1079. clear_last_expr ()
  1080. {
  1081.   last_expr_type = 0;
  1082. }
  1083.  
  1084. /* Begin a statement which will return a value.
  1085.    Return the RTL_EXPR for this statement expr.
  1086.    The caller must save that value and pass it to expand_end_stmt_expr.  */
  1087.  
  1088. tree
  1089. expand_start_stmt_expr ()
  1090. {
  1091.   rtx save = start_sequence ();
  1092.   /* Make the RTL_EXPR node temporary, not momentary,
  1093.      so that rtl_expr_chain doesn't become garbage.  */
  1094.   int momentary = suspend_momentary ();
  1095.   tree t = make_node (RTL_EXPR);
  1096.   resume_momentary (momentary);
  1097.   RTL_EXPR_RTL (t) = save;
  1098.   NO_DEFER_POP;
  1099.   expr_stmts_for_value++;
  1100.   return t;
  1101. }
  1102.  
  1103. /* Restore the previous state at the end of a statement that returns a value.
  1104.    Returns a tree node representing the statement's value and the
  1105.    insns to compute the value.
  1106.  
  1107.    The nodes of that expression have been freed by now, so we cannot use them.
  1108.    But we don't want to do that anyway; the expression has already been
  1109.    evaluated and now we just want to use the value.  So generate a RTL_EXPR
  1110.    with the proper type and RTL value.
  1111.  
  1112.    If the last substatement was not an expression,
  1113.    return something with type `void'.  */
  1114.  
  1115. tree
  1116. expand_end_stmt_expr (t)
  1117.      tree t;
  1118. {
  1119.   rtx saved = RTL_EXPR_RTL (t);
  1120.  
  1121.   OK_DEFER_POP;
  1122.  
  1123.   if (last_expr_type == 0)
  1124.     {
  1125.       last_expr_type = void_type_node;
  1126.       last_expr_value = const0_rtx;
  1127.     }
  1128.   TREE_TYPE (t) = last_expr_type;
  1129.   RTL_EXPR_RTL (t) = last_expr_value;
  1130.   RTL_EXPR_SEQUENCE (t) = get_insns ();
  1131.  
  1132.   rtl_expr_chain = tree_cons (NULL_TREE, t, rtl_expr_chain);
  1133.  
  1134.   end_sequence (saved);
  1135.  
  1136.   /* Don't consider deleting this expr or containing exprs at tree level.  */
  1137.   TREE_VOLATILE (t) = 1;
  1138.   /* Propagate volatility of the actual RTL expr.  */
  1139.   TREE_THIS_VOLATILE (t) = volatile_refs_p (last_expr_value);
  1140.  
  1141.   last_expr_type = 0;
  1142.   expr_stmts_for_value--;
  1143.  
  1144.   return t;
  1145. }
  1146.  
  1147. /* Generate RTL for the start of an if-then.  COND is the expression
  1148.    whose truth should be tested.
  1149.  
  1150.    If EXITFLAG is nonzero, this conditional is visible to
  1151.    `exit_something'.  */
  1152.  
  1153. void
  1154. expand_start_cond (cond, exitflag)
  1155.      tree cond;
  1156.      int exitflag;
  1157. {
  1158.   struct nesting *thiscond
  1159.     = (struct nesting *) xmalloc (sizeof (struct nesting));
  1160.  
  1161.   /* Make an entry on cond_stack for the cond we are entering.  */
  1162.  
  1163.   thiscond->next = cond_stack;
  1164.   thiscond->all = nesting_stack;
  1165.   thiscond->depth = ++nesting_depth;
  1166.   thiscond->data.cond.after_label = 0;
  1167.   thiscond->data.cond.else_label = gen_label_rtx ();
  1168.   thiscond->exit_label = exitflag ? thiscond->data.cond.else_label : 0;
  1169.   cond_stack = thiscond;
  1170.   nesting_stack = thiscond;
  1171.  
  1172.   do_jump (cond, thiscond->data.cond.else_label, NULL);
  1173. }
  1174.  
  1175. /* Generate RTL for the end of an if-then with no else-clause.
  1176.    Pop the record for it off of cond_stack.  */
  1177.  
  1178. void
  1179. expand_end_cond ()
  1180. {
  1181.   struct nesting *thiscond = cond_stack;
  1182.  
  1183.   do_pending_stack_adjust ();
  1184.   emit_label (thiscond->data.cond.else_label);
  1185.  
  1186.   POPSTACK (cond_stack);
  1187.   last_expr_type = 0;
  1188. }
  1189.  
  1190. /* Generate RTL between the then-clause and the else-clause
  1191.    of an if-then-else.  */
  1192.  
  1193. void
  1194. expand_start_else ()
  1195. {
  1196.   cond_stack->data.cond.after_label = gen_label_rtx ();
  1197.   if (cond_stack->exit_label != 0)
  1198.     cond_stack->exit_label = cond_stack->data.cond.after_label;
  1199.   emit_jump (cond_stack->data.cond.after_label);
  1200.   if (cond_stack->data.cond.else_label)
  1201.     emit_label (cond_stack->data.cond.else_label);
  1202. }
  1203.  
  1204. /* Generate RTL for the end of an if-then-else.
  1205.    Pop the record for it off of cond_stack.  */
  1206.  
  1207. void
  1208. expand_end_else ()
  1209. {
  1210.   struct nesting *thiscond = cond_stack;
  1211.  
  1212.   do_pending_stack_adjust ();
  1213.   /* Note: a syntax error can cause this to be called
  1214.      without first calling `expand_start_else'.  */
  1215.   if (thiscond->data.cond.after_label)
  1216.     emit_label (thiscond->data.cond.after_label);
  1217.  
  1218.   POPSTACK (cond_stack);
  1219.   last_expr_type = 0;
  1220. }
  1221.  
  1222. /* Generate RTL for the start of a loop.  EXIT_FLAG is nonzero if this
  1223.    loop should be exited by `exit_something'.  This is a loop for which
  1224.    `expand_continue' will jump to the top of the loop.
  1225.  
  1226.    Make an entry on loop_stack to record the labels associated with
  1227.    this loop.  */
  1228.  
  1229. void
  1230. expand_start_loop (exit_flag)
  1231.      int exit_flag;
  1232. {
  1233.   register struct nesting *thisloop
  1234.     = (struct nesting *) xmalloc (sizeof (struct nesting));
  1235.  
  1236.   /* Make an entry on loop_stack for the loop we are entering.  */
  1237.  
  1238.   thisloop->next = loop_stack;
  1239.   thisloop->all = nesting_stack;
  1240.   thisloop->depth = ++nesting_depth;
  1241.   thisloop->data.loop.start_label = gen_label_rtx ();
  1242.   thisloop->data.loop.end_label = gen_label_rtx ();
  1243.   thisloop->data.loop.continue_label = thisloop->data.loop.start_label;
  1244.   thisloop->exit_label = exit_flag ? thisloop->data.loop.end_label : 0;
  1245.   loop_stack = thisloop;
  1246.   nesting_stack = thisloop;
  1247.  
  1248.   do_pending_stack_adjust ();
  1249.   emit_queue ();
  1250.   emit_note (0, NOTE_INSN_LOOP_BEG);
  1251.   emit_label (thisloop->data.loop.start_label);
  1252. }
  1253.  
  1254. /* Like expand_start_loop but for a loop where the continuation point
  1255.    (for expand_continue_loop) will be specified explicitly.  */
  1256.  
  1257. void
  1258. expand_start_loop_continue_elsewhere (exit_flag)
  1259.      int exit_flag;
  1260. {
  1261.   expand_start_loop (exit_flag);
  1262.   loop_stack->data.loop.continue_label = gen_label_rtx ();
  1263. }
  1264.  
  1265. /* Specify the continuation point for a loop started with
  1266.    expand_start_loop_continue_elsewhere.
  1267.    Use this at the point in the code to which a continue statement
  1268.    should jump.  */
  1269.  
  1270. void
  1271. expand_loop_continue_here ()
  1272. {
  1273.   do_pending_stack_adjust ();
  1274.   emit_note (0, NOTE_INSN_LOOP_CONT);
  1275.   emit_label (loop_stack->data.loop.continue_label);
  1276. }
  1277.  
  1278. /* Finish a loop.  Generate a jump back to the top and the loop-exit label.
  1279.    Pop the block off of loop_stack.  */
  1280.  
  1281. void
  1282. expand_end_loop ()
  1283. {
  1284.   register rtx insn = get_last_insn ();
  1285.   register rtx start_label = loop_stack->data.loop.start_label;
  1286.  
  1287.   do_pending_stack_adjust ();
  1288.  
  1289.   /* If optimizing, perhaps reorder the loop.  If the loop
  1290.      starts with a conditional exit, roll that to the end
  1291.      where it will optimize together with the jump back.  */
  1292.   if (optimize
  1293.       &&
  1294.       ! (GET_CODE (insn) == JUMP_INSN
  1295.      && GET_CODE (PATTERN (insn)) == SET
  1296.      && SET_DEST (PATTERN (insn)) == pc_rtx
  1297.      && GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE))
  1298.     {
  1299.       /* Scan insns from the top of the loop looking for a qualified
  1300.      conditional exit.  */
  1301.       for (insn = loop_stack->data.loop.start_label; insn; insn= NEXT_INSN (insn))
  1302.     if (GET_CODE (insn) == JUMP_INSN && GET_CODE (PATTERN (insn)) == SET
  1303.         && SET_DEST (PATTERN (insn)) == pc_rtx
  1304.         && GET_CODE (SET_SRC (PATTERN (insn))) == IF_THEN_ELSE
  1305.         &&
  1306.         ((GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 1)) == LABEL_REF
  1307.           && (XEXP (XEXP (SET_SRC (PATTERN (insn)), 1), 0)
  1308.           == loop_stack->data.loop.end_label))
  1309.          ||
  1310.          (GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 2)) == LABEL_REF
  1311.           && (XEXP (XEXP (SET_SRC (PATTERN (insn)), 2), 0)
  1312.           == loop_stack->data.loop.end_label))))
  1313.       break;
  1314.       if (insn != 0)
  1315.     {
  1316.       /* We found one.  Move everything from there up
  1317.          to the end of the loop, and add a jump into the loop
  1318.          to jump to there.  */
  1319.       register rtx newstart_label = gen_label_rtx ();
  1320.  
  1321.       emit_label_after (newstart_label, PREV_INSN (start_label));
  1322.       reorder_insns (start_label, insn, get_last_insn ());
  1323.       emit_jump_insn_after (gen_jump (start_label), PREV_INSN (newstart_label));
  1324.       emit_barrier_after (PREV_INSN (newstart_label));
  1325.       start_label = newstart_label;
  1326.     }
  1327.     }
  1328.  
  1329.   emit_jump (start_label);
  1330.   emit_note (0, NOTE_INSN_LOOP_END);
  1331.   emit_label (loop_stack->data.loop.end_label);
  1332.  
  1333.   POPSTACK (loop_stack);
  1334.  
  1335.   last_expr_type = 0;
  1336. }
  1337.  
  1338. /* Generate a jump to the current loop's continue-point.
  1339.    This is usually the top of the loop, but may be specified
  1340.    explicitly elsewhere.  If not currently inside a loop,
  1341.    return 0 and do nothing; caller will print an error message.  */
  1342.  
  1343. int
  1344. expand_continue_loop ()
  1345. {
  1346.   last_expr_type = 0;
  1347.   if (loop_stack == 0)
  1348.     return 0;
  1349.   expand_goto_internal (0, loop_stack->data.loop.continue_label, 0);
  1350.   return 1;
  1351. }
  1352.  
  1353. /* Generate a jump to exit the current loop.  If not currently inside a loop,
  1354.    return 0 and do nothing; caller will print an error message.  */
  1355.  
  1356. int
  1357. expand_exit_loop ()
  1358. {
  1359.   last_expr_type = 0;
  1360.   if (loop_stack == 0)
  1361.     return 0;
  1362.   expand_goto_internal (0, loop_stack->data.loop.end_label, 0);
  1363.   return 1;
  1364. }
  1365.  
  1366. /* Generate a conditional jump to exit the current loop if COND
  1367.    evaluates to zero.  If not currently inside a loop,
  1368.    return 0 and do nothing; caller will print an error message.  */
  1369.  
  1370. int
  1371. expand_exit_loop_if_false (cond)
  1372.      tree cond;
  1373. {
  1374.   last_expr_type = 0;
  1375.   if (loop_stack == 0)
  1376.     return 0;
  1377.   do_jump (cond, loop_stack->data.loop.end_label, NULL);
  1378.   return 1;
  1379. }
  1380.  
  1381. /* Return non-zero if currently inside a loop.  */
  1382.  
  1383. int
  1384. inside_loop ()
  1385. {
  1386.   return loop_stack != 0;
  1387. }
  1388.  
  1389. /* Generate a jump to exit the current loop, conditional, binding contour
  1390.    or case statement.  Not all such constructs are visible to this function,
  1391.    only those started with EXIT_FLAG nonzero.  Individual languages use
  1392.    the EXIT_FLAG parameter to control which kinds of constructs you can
  1393.    exit this way.
  1394.  
  1395.    If not currently inside anything that can be exited,
  1396.    return 0 and do nothing; caller will print an error message.  */
  1397.  
  1398. int
  1399. expand_exit_something ()
  1400. {
  1401.   struct nesting *n;
  1402.   last_expr_type = 0;
  1403.   for (n = nesting_stack; n; n = n->all)
  1404.     if (n->exit_label != 0)
  1405.       {
  1406.     expand_goto_internal (0, n->exit_label, 0);
  1407.     return 1;
  1408.       }
  1409.  
  1410.   return 0;
  1411. }
  1412.  
  1413. /* Generate RTL to return from the current function, with no value.
  1414.    (That is, we do not do anything about returning any value.)  */
  1415.  
  1416. void
  1417. expand_null_return ()
  1418. {
  1419.   struct nesting *block = block_stack;
  1420.   rtx last_insn = 0;
  1421.  
  1422.   /* Does any pending block have cleanups?  */
  1423.  
  1424.   while (block && block->data.block.cleanups == 0)
  1425.     block = block->next;
  1426.  
  1427.   /* If yes, use a goto to return, since that runs cleanups.  */
  1428.  
  1429.   expand_null_return_1 (last_insn, block != 0);
  1430. }
  1431.  
  1432. /* Output a return with no value.  If LAST_INSN is nonzero,
  1433.    pretend that the return takes place after LAST_INSN.
  1434.    If USE_GOTO is nonzero then don't use a return instruction;
  1435.    go to the return label instead.  This causes any cleanups
  1436.    of pending blocks to be executed normally.  */
  1437.  
  1438. static void
  1439. expand_null_return_1 (last_insn, use_goto)
  1440.      rtx last_insn;
  1441.      int use_goto;
  1442. {
  1443.   rtx end_label = cleanup_label ? cleanup_label : return_label;
  1444.  
  1445.   clear_pending_stack_adjust ();
  1446.   do_pending_stack_adjust ();
  1447.   last_expr_type = 0;
  1448.  
  1449.   /* PCC-struct return always uses an epilogue.  */
  1450.   if (current_function_returns_pcc_struct || use_goto)
  1451.     {
  1452.       if (end_label == 0)
  1453.     end_label = return_label = gen_label_rtx ();
  1454.       expand_goto_internal (0, end_label, last_insn);
  1455.       return;
  1456.     }
  1457.  
  1458.   /* Otherwise output a simple return-insn if one is available,
  1459.      unless it won't do the job.  */
  1460. #ifdef HAVE_return
  1461.   if (HAVE_return && cleanup_label == 0)
  1462.     {
  1463.       emit_jump_insn (gen_return ());
  1464.       emit_barrier ();
  1465.       return;
  1466.     }
  1467. #endif
  1468.  
  1469.   /* Otherwise jump to the epilogue.  */
  1470.   expand_goto_internal (0, end_label, last_insn);
  1471. }
  1472.  
  1473. /* Generate RTL to evaluate the expression RETVAL and return it
  1474.    from the current function.  */
  1475.  
  1476. void
  1477. expand_return (retval)
  1478.      tree retval;
  1479. {
  1480.   /* If there are any cleanups to be performed, then they will
  1481.      be inserted following LAST_INSN.  It is desirable
  1482.      that the last_insn, for such purposes, should be the
  1483.      last insn before computing the return value.  Otherwise, cleanups
  1484.      which call functions can clobber the return value.  */
  1485.   /* ??? rms: I think that is erroneous, because in C++ it would
  1486.      run destructors on variables that might be used in the subsequent
  1487.      computation of the return value.  */
  1488.   rtx last_insn = 0;
  1489.   register rtx val = 0;
  1490.   register rtx op0;
  1491.   tree retval_rhs;
  1492.   int cleanups;
  1493.   struct nesting *block;
  1494.  
  1495.   /* Are any cleanups needed?  E.g. C++ destructors to be run?  */
  1496.   cleanups = 0;
  1497.   for (block = block_stack; block; block = block->next)
  1498.     if (block->data.block.cleanups != 0)
  1499.       {
  1500.     cleanups = 1;
  1501.     break;
  1502.       }
  1503.  
  1504.   if (TREE_CODE (retval) == RESULT_DECL)
  1505.     retval_rhs = retval;
  1506.   else if ((TREE_CODE (retval) == MODIFY_EXPR || TREE_CODE (retval) == INIT_EXPR)
  1507.        && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
  1508.     retval_rhs = TREE_OPERAND (retval, 1);
  1509.   else if (TREE_TYPE (retval) == void_type_node)
  1510.     /* Recognize tail-recursive call to void function.  */
  1511.     retval_rhs = retval;
  1512.   else
  1513.     retval_rhs = NULL_TREE;
  1514.  
  1515.   /* Only use `last_insn' if there are cleanups which must be run.  */
  1516.   if (cleanups || cleanup_label != 0)
  1517.     last_insn = get_last_insn ();
  1518.  
  1519.   /* For tail-recursive call to current function,
  1520.      just jump back to the beginning.
  1521.      It's unsafe if any auto variable in this function
  1522.      has its address taken; for simplicity,
  1523.      require stack frame to be empty.  */
  1524.   if (optimize && retval_rhs != 0
  1525.       && frame_offset == STARTING_FRAME_OFFSET
  1526.       && TREE_CODE (retval_rhs) == CALL_EXPR
  1527.       && TREE_CODE (TREE_OPERAND (retval_rhs, 0)) == ADDR_EXPR
  1528.       && TREE_OPERAND (TREE_OPERAND (retval_rhs, 0), 0) == this_function
  1529.       /* Finish checking validity, and if valid emit code
  1530.      to set the argument variables for the new call.  */
  1531.       && tail_recursion_args (TREE_OPERAND (retval_rhs, 1),
  1532.                   DECL_ARGUMENTS (this_function)))
  1533.     {
  1534.       if (tail_recursion_label == 0)
  1535.     {
  1536.       tail_recursion_label = gen_label_rtx ();
  1537.       emit_label_after (tail_recursion_label,
  1538.                 tail_recursion_reentry);
  1539.     }
  1540.       expand_goto_internal (0, tail_recursion_label, last_insn);
  1541.       emit_barrier ();
  1542.       return;
  1543.     }
  1544. #ifdef HAVE_return
  1545.   /* This optimization is safe if there are local cleanups
  1546.      because expand_null_return takes care of them.
  1547.      ??? I think it should also be safe when there is a cleanup label,
  1548.      because expand_null_return takes care of them, too.
  1549.      Any reason why not?  */
  1550.   if (HAVE_return && cleanup_label == 0
  1551.       && ! current_function_returns_pcc_struct)
  1552.     {
  1553.       /* If this is  return x == y;  then generate
  1554.      if (x == y) return 1; else return 0;
  1555.      if we can do it with explicit return insns.  */
  1556.       if (retval_rhs)
  1557.     switch (TREE_CODE (retval_rhs))
  1558.       {
  1559.       case EQ_EXPR:
  1560.       case NE_EXPR:
  1561.       case GT_EXPR:
  1562.       case GE_EXPR:
  1563.       case LT_EXPR:
  1564.       case LE_EXPR:
  1565.       case TRUTH_ANDIF_EXPR:
  1566.       case TRUTH_ORIF_EXPR:
  1567.       case TRUTH_AND_EXPR:
  1568.       case TRUTH_OR_EXPR:
  1569.       case TRUTH_NOT_EXPR:
  1570.         op0 = gen_label_rtx ();
  1571.         val = DECL_RTL (DECL_RESULT (this_function));
  1572.         jumpifnot (retval_rhs, op0);
  1573.         emit_move_insn (val, const1_rtx);
  1574.         emit_insn (gen_rtx (USE, VOIDmode, val));
  1575.         expand_null_return ();
  1576.         emit_label (op0);
  1577.         emit_move_insn (val, const0_rtx);
  1578.         emit_insn (gen_rtx (USE, VOIDmode, val));
  1579.         expand_null_return ();
  1580.         return;
  1581.       }
  1582.     }
  1583. #endif /* HAVE_return */
  1584.  
  1585.   if (cleanups
  1586.       && retval_rhs != 0
  1587.       && TREE_TYPE (retval_rhs) != void_type_node
  1588.       && GET_CODE (DECL_RTL (DECL_RESULT (this_function))) == REG)
  1589.     {
  1590.       rtx last_insn;
  1591.       /* Calculate the return value into a pseudo reg.  */
  1592.       val = expand_expr (retval_rhs, 0, VOIDmode, 0);
  1593.       emit_queue ();
  1594.       /* Put the cleanups here.  */
  1595.       last_insn = get_last_insn ();
  1596.       /* Copy the value into hard return reg.  */
  1597.       emit_move_insn (DECL_RTL (DECL_RESULT (this_function)), val);
  1598.       val = DECL_RTL (DECL_RESULT (this_function));
  1599.  
  1600.       if (GET_CODE (val) == REG)
  1601.     emit_insn (gen_rtx (USE, VOIDmode, val));
  1602.       expand_null_return_1 (last_insn, cleanups);
  1603.     }
  1604.   else
  1605.     {
  1606.       /* No cleanups or no hard reg used;
  1607.      calculate value into hard return reg
  1608.      and let cleanups come after.  */
  1609.       val = expand_expr (retval, 0, VOIDmode, 0);
  1610.       emit_queue ();
  1611.  
  1612.       val = DECL_RTL (DECL_RESULT (this_function));
  1613.       if (val && GET_CODE (val) == REG)
  1614.     emit_insn (gen_rtx (USE, VOIDmode, val));
  1615.       expand_null_return ();
  1616.     }
  1617. }
  1618.  
  1619. /* Return 1 if the end of the generated RTX is not a barrier.
  1620.    This means code already compiled can drop through.  */
  1621.  
  1622. int
  1623. drop_through_at_end_p ()
  1624. {
  1625.   rtx insn = get_last_insn ();
  1626.   while (insn && GET_CODE (insn) == NOTE)
  1627.     insn = PREV_INSN (insn);
  1628.   return insn && GET_CODE (insn) != BARRIER;
  1629. }
  1630.  
  1631. /* Emit code to alter this function's formal parms for a tail-recursive call.
  1632.    ACTUALS is a list of actual parameter expressions (chain of TREE_LISTs).
  1633.    FORMALS is the chain of decls of formals.
  1634.    Return 1 if this can be done;
  1635.    otherwise return 0 and do not emit any code.  */
  1636.  
  1637. static int
  1638. tail_recursion_args (actuals, formals)
  1639.      tree actuals, formals;
  1640. {
  1641.   register tree a = actuals, f = formals;
  1642.   register int i;
  1643.   register rtx *argvec;
  1644.  
  1645.   /* Check that number and types of actuals are compatible
  1646.      with the formals.  This is not always true in valid C code.
  1647.      Also check that no formal needs to be addressable
  1648.      and that all formals are scalars.  */
  1649.  
  1650.   /* Also count the args.  */
  1651.  
  1652.   for (a = actuals, f = formals, i = 0; a && f; a = TREE_CHAIN (a), f = TREE_CHAIN (f), i++)
  1653.     {
  1654.       if (TREE_TYPE (TREE_VALUE (a)) != TREE_TYPE (f))
  1655.     return 0;
  1656.       if (GET_CODE (DECL_RTL (f)) != REG || DECL_MODE (f) == BLKmode)
  1657.     return 0;
  1658.     }
  1659.   if (a != 0 || f != 0)
  1660.     return 0;
  1661.  
  1662.   /* Compute all the actuals.  */
  1663.  
  1664.   argvec = (rtx *) alloca (i * sizeof (rtx));
  1665.  
  1666.   for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
  1667.     argvec[i] = expand_expr (TREE_VALUE (a), 0, VOIDmode, 0);
  1668.  
  1669.   /* Find which actual values refer to current values of previous formals.
  1670.      Copy each of them now, before any formal is changed.  */
  1671.  
  1672.   for (a = actuals, i = 0; a; a = TREE_CHAIN (a), i++)
  1673.     {
  1674.       int copy = 0;
  1675.       register int j;
  1676.       for (f = formals, j = 0; j < i; f = TREE_CHAIN (f), j++)
  1677.     if (reg_mentioned_p (DECL_RTL (f), argvec[i]))
  1678.       { copy = 1; break; }
  1679.       if (copy)
  1680.     argvec[i] = copy_to_reg (argvec[i]);
  1681.     }
  1682.  
  1683.   /* Store the values of the actuals into the formals.  */
  1684.  
  1685.   for (f = formals, a = actuals, i = 0; f;
  1686.        f = TREE_CHAIN (f), a = TREE_CHAIN (a), i++)
  1687.     {
  1688.       if (DECL_MODE (f) == GET_MODE (argvec[i]))
  1689.     emit_move_insn (DECL_RTL (f), argvec[i]);
  1690.       else
  1691.     convert_move (DECL_RTL (f), argvec[i],
  1692.               TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a))));
  1693.     }
  1694.  
  1695.   return 1;
  1696. }
  1697.  
  1698. /* Generate the RTL code for entering a binding contour.
  1699.    The variables are declared one by one, by calls to `expand_decl'.
  1700.  
  1701.    EXIT_FLAG is nonzero if this construct should be visible to
  1702.    `exit_something'.  */
  1703.  
  1704. void
  1705. expand_start_bindings (exit_flag)
  1706.      int exit_flag;
  1707. {
  1708.   struct nesting *thisblock
  1709.     = (struct nesting *) xmalloc (sizeof (struct nesting));
  1710.  
  1711.   rtx note = emit_note (0, NOTE_INSN_BLOCK_BEG);
  1712.  
  1713.   /* Make an entry on block_stack for the block we are entering.  */
  1714.  
  1715.   thisblock->next = block_stack;
  1716.   thisblock->all = nesting_stack;
  1717.   thisblock->depth = ++nesting_depth;
  1718.   thisblock->data.block.stack_level = 0;
  1719.   thisblock->data.block.cleanups = 0;
  1720.   /* We build this even if the cleanups lists are empty
  1721.      because we rely on having an element in the chain
  1722.      for each block that is pending.  */
  1723.   thisblock->data.block.outer_cleanups
  1724.     = (block_stack
  1725.        ? tree_cons (NULL_TREE, block_stack->data.block.cleanups,
  1726.             block_stack->data.block.outer_cleanups)
  1727.        : 0);
  1728.   thisblock->data.block.label_chain = 0;
  1729.   thisblock->data.block.innermost_stack_block = stack_block_stack;
  1730.   thisblock->data.block.first_insn = note;
  1731.   thisblock->exit_label = exit_flag ? gen_label_rtx () : 0;
  1732.   block_stack = thisblock;
  1733.   nesting_stack = thisblock;
  1734. }
  1735.  
  1736. /* Output a USE for any register use in RTL.
  1737.    This is used with -noreg to mark the extent of lifespan
  1738.    of any registers used in a user-visible variable's DECL_RTL.  */
  1739.  
  1740. void
  1741. use_variable (rtl)
  1742.      rtx rtl;
  1743. {
  1744.   if (GET_CODE (rtl) == REG)
  1745.     /* This is a register variable.  */
  1746.     emit_insn (gen_rtx (USE, VOIDmode, rtl));
  1747.   else if (GET_CODE (rtl) == MEM
  1748.        && GET_CODE (XEXP (rtl, 0)) == REG
  1749.        && XEXP (rtl, 0) != frame_pointer_rtx
  1750.        && XEXP (rtl, 0) != arg_pointer_rtx)
  1751.     /* This is a variable-sized structure.  */
  1752.     emit_insn (gen_rtx (USE, VOIDmode, XEXP (rtl, 0)));
  1753. }
  1754.  
  1755. /* Like use_variable except that it outputs the USEs after INSN
  1756.    instead of at the end of the insn-chain.  */
  1757.  
  1758. static void
  1759. use_variable_after (rtl, insn)
  1760.      rtx rtl, insn;
  1761. {
  1762.   if (GET_CODE (rtl) == REG)
  1763.     /* This is a register variable.  */
  1764.     emit_insn_after (gen_rtx (USE, VOIDmode, rtl), insn);
  1765.   else if (GET_CODE (rtl) == MEM
  1766.        && GET_CODE (XEXP (rtl, 0)) == REG
  1767.        && XEXP (rtl, 0) != frame_pointer_rtx
  1768.        && XEXP (rtl, 0) != arg_pointer_rtx)
  1769.     /* This is a variable-sized structure.  */
  1770.     emit_insn_after (gen_rtx (USE, VOIDmode, XEXP (rtl, 0)), insn);
  1771. }
  1772.  
  1773. /* Generate RTL code to terminate a binding contour.
  1774.    VARS is the chain of VAR_DECL nodes
  1775.    for the variables bound in this contour.
  1776.    MARK_ENDS is nonzero if we should put a note at the beginning
  1777.    and end of this binding contour.
  1778.  
  1779.    DONT_JUMP_IN is nonzero if it is not valid to jump into this contour.
  1780.    (That is true automatically if the contour has a saved stack level.)  */
  1781.  
  1782. void
  1783. expand_end_bindings (vars, mark_ends, dont_jump_in)
  1784.      tree vars;
  1785.      int mark_ends;
  1786.      int dont_jump_in;
  1787. {
  1788.   register struct nesting *thisblock = block_stack;
  1789.   register tree decl;
  1790.  
  1791.   if (warn_unused)
  1792.     for (decl = vars; decl; decl = TREE_CHAIN (decl))
  1793.       if (! TREE_USED (decl) && TREE_CODE (decl) == VAR_DECL)
  1794.     warning_with_decl (decl, "unused variable `%s'");
  1795.  
  1796.   /* Mark the beginning and end of the scope if requested.  */
  1797.  
  1798.   if (mark_ends)
  1799.     emit_note (0, NOTE_INSN_BLOCK_END);
  1800.   else
  1801.     /* Get rid of the beginning-mark if we don't make an end-mark.  */
  1802.     NOTE_LINE_NUMBER (thisblock->data.block.first_insn) = NOTE_INSN_DELETED;
  1803.  
  1804.   if (thisblock->exit_label)
  1805.     {
  1806.       do_pending_stack_adjust ();
  1807.       emit_label (thisblock->exit_label);
  1808.     }
  1809.  
  1810.   if (dont_jump_in
  1811.       || thisblock->data.block.stack_level != 0
  1812.       || thisblock->data.block.cleanups != 0)
  1813.     {
  1814.       struct label_chain *chain;
  1815.  
  1816.       /* Any labels in this block are no longer valid to go to.
  1817.      Mark them to cause an error message.  */
  1818.       for (chain = thisblock->data.block.label_chain; chain; chain = chain->next)
  1819.     {
  1820.       TREE_PACKED (chain->label) = 1;
  1821.       /* If any goto without a fixup came to this label,
  1822.          that must be an error, because gotos without fixups
  1823.          come from outside all saved stack-levels and all cleanups.  */
  1824.       if (TREE_ADDRESSABLE (chain->label))
  1825.         error_with_decl (chain->label,
  1826.                  "label `%s' used before containing binding contour");
  1827.     }
  1828.     }
  1829.  
  1830.   /* Restore stack level in effect before the block
  1831.      (only if variable-size objects allocated).  */
  1832.  
  1833.   if (thisblock->data.block.stack_level != 0
  1834.       || thisblock->data.block.cleanups != 0)
  1835.     {
  1836.       /* Perform any cleanups associated with the block.  */
  1837.  
  1838.       expand_cleanups (thisblock->data.block.cleanups, 0);
  1839.  
  1840.       /* Restore the stack level.  */
  1841.  
  1842.       if (thisblock->data.block.stack_level != 0)
  1843.     {
  1844.       do_pending_stack_adjust ();
  1845.       emit_move_insn (stack_pointer_rtx,
  1846.               thisblock->data.block.stack_level);
  1847.     }
  1848.  
  1849.       /* Any gotos out of this block must also do these things.
  1850.      Also report any gotos with fixups that came to labels in this level.  */
  1851.       fixup_gotos (thisblock,
  1852.            thisblock->data.block.stack_level,
  1853.            thisblock->data.block.cleanups,
  1854.            thisblock->data.block.first_insn,
  1855.            dont_jump_in);
  1856.     }
  1857.  
  1858.   /* If doing stupid register allocation, make sure lives of all
  1859.      register variables declared here extend thru end of scope.  */
  1860.  
  1861.   if (obey_regdecls)
  1862.     for (decl = vars; decl; decl = TREE_CHAIN (decl))
  1863.       {
  1864.     rtx rtl = DECL_RTL (decl);
  1865.     if (TREE_CODE (decl) == VAR_DECL && rtl != 0)
  1866.       use_variable (rtl);
  1867.       }
  1868.  
  1869.   /* Restore block_stack level for containing block.  */
  1870.  
  1871.   stack_block_stack = thisblock->data.block.innermost_stack_block;
  1872.   POPSTACK (block_stack);
  1873. }
  1874.  
  1875. /* Generate RTL for the automatic variable declaration DECL.
  1876.    (Other kinds of declarations are simply ignored if seen here.)
  1877.    CLEANUP is an expression to be executed at exit from this binding contour;
  1878.    for example, in C++, it might call the destructor for this variable.
  1879.  
  1880.    If CLEANUP contains any SAVE_EXPRs, then you must preevaluate them
  1881.    either before or after calling `expand_decl' but before compiling
  1882.    any subsequent expressions.  This is because CLEANUP may be expanded
  1883.    more than once, on different branches of execution.
  1884.    For the same reason, CLEANUP may not contain a CALL_EXPR
  1885.    except as its topmost node--else `preexpand_calls' would get confused.
  1886.  
  1887.    If CLEANUP is nonzero and DECL is zero, we record a cleanup
  1888.    that is not associated with any particular variable.
  1889.  
  1890.    There is no special support here for C++ constructors.
  1891.    They should be handled by the proper code in DECL_INITIAL.  */
  1892.  
  1893. void
  1894. expand_decl (decl, cleanup)
  1895.      register tree decl;
  1896.      tree cleanup;
  1897. {
  1898.   struct nesting *thisblock = block_stack;
  1899.   tree type;
  1900.   
  1901.   /* Record the cleanup if there is one.  */
  1902.  
  1903.   if (cleanup != 0)
  1904.     {
  1905.       thisblock->data.block.cleanups
  1906.     = temp_tree_cons (decl, cleanup, thisblock->data.block.cleanups);
  1907.       /* If this block has a cleanup, it belongs in stack_block_stack.  */
  1908.       stack_block_stack = thisblock;
  1909.     }
  1910.  
  1911.   if (decl == NULL_TREE)
  1912.     {
  1913.       /* This was a cleanup with no variable.  */
  1914.       if (cleanup == 0)
  1915.     abort ();
  1916.       return;
  1917.     }
  1918.  
  1919.   type = TREE_TYPE (decl);
  1920.  
  1921.   /* Aside from that, only automatic variables need any expansion done.
  1922.      Static and external variables, and external functions,
  1923.      will be handled by `assemble_variable' (called from finish_decl).
  1924.      TYPE_DECL and CONST_DECL require nothing.
  1925.      PARM_DECLs are handled in `assign_parms'.  */
  1926.  
  1927.   if (TREE_CODE (decl) != VAR_DECL)
  1928.     return;
  1929.   if (TREE_STATIC (decl) || TREE_EXTERNAL (decl))
  1930.     return;
  1931.  
  1932.   /* Create the RTL representation for the variable.  */
  1933.  
  1934.   if (type == error_mark_node)
  1935.     DECL_RTL (decl) = gen_rtx (MEM, BLKmode, const0_rtx);
  1936.   else if (DECL_SIZE (decl) == 0)
  1937.     /* Variable with incomplete type.  */
  1938.     {
  1939.       if (DECL_INITIAL (decl) == 0)
  1940.     /* Error message was already done; now avoid a crash.  */
  1941.     DECL_RTL (decl) = assign_stack_local (DECL_MODE (decl), 0);
  1942.       else
  1943.     /* An initializer is going to decide the size of this array.
  1944.        Until we know the size, represent its address with a reg.  */
  1945.     DECL_RTL (decl) = gen_rtx (MEM, BLKmode, gen_reg_rtx (Pmode));
  1946.     }
  1947.   else if (DECL_MODE (decl) != BLKmode
  1948.        /* If -ffloat-store, don't put explicit float vars
  1949.           into regs.  */
  1950.        && !(flag_float_store
  1951.         && TREE_CODE (type) == REAL_TYPE)
  1952.        && ! TREE_VOLATILE (decl)
  1953.        && ! TREE_ADDRESSABLE (decl)
  1954.        && (TREE_REGDECL (decl) || ! obey_regdecls))
  1955.     {
  1956.       /* Automatic variable that can go in a register.  */
  1957.       DECL_RTL (decl) = gen_reg_rtx (DECL_MODE (decl));
  1958.       if (TREE_CODE (type) == POINTER_TYPE)
  1959.     mark_reg_pointer (DECL_RTL (decl));
  1960.       REG_USERVAR_P (DECL_RTL (decl)) = 1;
  1961.     }
  1962.   else if (TREE_LITERAL (DECL_SIZE (decl)))
  1963.     {
  1964.       rtx oldaddr = 0;
  1965.       rtx addr;
  1966.  
  1967.       /* If we previously made RTL for this decl, it must be an array
  1968.      whose size was determined by the initializer.
  1969.      The old address was a register; set that register now
  1970.      to the proper address.  */
  1971.       if (DECL_RTL (decl) != 0)
  1972.     {
  1973.       if (GET_CODE (DECL_RTL (decl)) != MEM
  1974.           || GET_CODE (XEXP (DECL_RTL (decl), 0)) != REG)
  1975.         abort ();
  1976.       oldaddr = XEXP (DECL_RTL (decl), 0);
  1977.     }
  1978.  
  1979.       /* Variable of fixed size that goes on the stack.  */
  1980.       DECL_RTL (decl)
  1981. #if defined( __WATCOMC__ )
  1982.     = assign_stack_local (DECL_MODE (decl), (int)
  1983. #else
  1984.     = assign_stack_local (DECL_MODE (decl),
  1985. #endif
  1986.                   (TREE_INT_CST_LOW (DECL_SIZE (decl))
  1987.                    * DECL_SIZE_UNIT (decl)
  1988.                    + BITS_PER_UNIT - 1)
  1989.                   / BITS_PER_UNIT);
  1990.       if (oldaddr)
  1991.     {
  1992.       addr = force_operand (XEXP (DECL_RTL (decl), 0), oldaddr);
  1993.       emit_move_insn (oldaddr, addr);
  1994.     }
  1995.  
  1996.       /* If this is a memory ref that contains aggregate components,
  1997.      mark it as such for cse and loop optimize.  */
  1998.       MEM_IN_STRUCT_P (DECL_RTL (decl))
  1999.     = (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
  2000.        || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
  2001.        || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE);
  2002. #if 0
  2003.       /* If this is in memory because of -ffloat-store,
  2004.      set the volatile bit, to prevent optimizations from
  2005.      undoing the effects.  */
  2006.       if (flag_float_store && TREE_CODE (type) == REAL_TYPE)
  2007.     MEM_VOLATILE_P (DECL_RTL (decl)) = 1;
  2008. #endif
  2009.     }
  2010.   else
  2011.     /* Dynamic-size object: must push space on the stack.  */
  2012.     {
  2013.       rtx address, size;
  2014.  
  2015.       frame_pointer_needed = 1;
  2016.  
  2017.       /* Record the stack pointer on entry to block, if have
  2018.      not already done so.  */
  2019.       if (thisblock->data.block.stack_level == 0)
  2020.     {
  2021.       do_pending_stack_adjust ();
  2022.       thisblock->data.block.stack_level
  2023.         = copy_to_reg (stack_pointer_rtx);
  2024.       stack_block_stack = thisblock;
  2025.     }
  2026.  
  2027.       /* Compute the variable's size, in bytes.  */
  2028.       size = expand_expr (convert_units (DECL_SIZE (decl),
  2029.                      DECL_SIZE_UNIT (decl),
  2030.                      BITS_PER_UNIT),
  2031.               0, VOIDmode, 0);
  2032.  
  2033.       /* Round it up to this machine's required stack boundary.  */
  2034. #ifdef STACK_BOUNDARY
  2035.       /* Avoid extra code if we can prove it's a multiple already.  */
  2036.       if (DECL_SIZE_UNIT (decl) % STACK_BOUNDARY)
  2037.     {
  2038. #ifdef STACK_POINTER_OFFSET
  2039.       /* Avoid extra code if we can prove that adding STACK_POINTER_OFFSET
  2040.          will not give this address invalid alignment.  */
  2041.       if (DECL_ALIGN (decl) > ((STACK_POINTER_OFFSET * BITS_PER_UNIT) % STACK_BOUNDARY))
  2042.         size = plus_constant (size,
  2043.                   STACK_POINTER_OFFSET % (STACK_BOUNDARY / BITS_PER_UNIT));
  2044. #endif
  2045.       size = round_push (size);
  2046.     }
  2047. #endif /* STACK_BOUNDARY */
  2048.  
  2049.       /* Make space on the stack, and get an rtx for the address of it.  */
  2050. #ifdef STACK_GROWS_DOWNWARD
  2051.       anti_adjust_stack (size);
  2052. #endif
  2053.       address = copy_to_reg (stack_pointer_rtx);
  2054. #ifdef STACK_POINTER_OFFSET
  2055.       {
  2056.     /* If the contents of the stack pointer reg are offset from the
  2057.        actual top-of-stack address, add the offset here.  */
  2058.     rtx sp_offset = gen_rtx (CONST_INT, VOIDmode, STACK_POINTER_OFFSET);
  2059. #ifdef STACK_BOUNDARY
  2060. #ifdef STACK_GROWS_DOWNWARD
  2061.     int direction = 1;
  2062. #else /* not STACK_GROWS_DOWNWARD */
  2063.     int direction = 0;
  2064. #endif /* not STACK_GROWS_DOWNWARD */
  2065.     if (DECL_ALIGN (decl) > ((STACK_POINTER_OFFSET * BITS_PER_UNIT) % STACK_BOUNDARY))
  2066.       sp_offset = plus_constant (sp_offset,
  2067.                      (STACK_POINTER_OFFSET
  2068.                       % (STACK_BOUNDARY / BITS_PER_UNIT)
  2069.                       * direction));
  2070. #endif /* STACK_BOUNDARY */
  2071.     emit_insn (gen_add2_insn (address, sp_offset));
  2072.       }
  2073. #endif /* STACK_POINTER_OFFSET */
  2074. #ifndef STACK_GROWS_DOWNWARD
  2075.       anti_adjust_stack (size);
  2076. #endif
  2077.  
  2078.       /* Some systems require a particular insn to refer to the stack
  2079.      to make the pages exist.  */
  2080. #ifdef HAVE_probe
  2081.       if (HAVE_probe)
  2082.     emit_insn (gen_probe ());
  2083. #endif
  2084.  
  2085.       /* Reference the variable indirect through that rtx.  */
  2086.       DECL_RTL (decl) = gen_rtx (MEM, DECL_MODE (decl), address);
  2087.     }
  2088.  
  2089.   if (TREE_VOLATILE (decl))
  2090.     MEM_VOLATILE_P (DECL_RTL (decl)) = 1;
  2091.   if (TREE_READONLY (decl))
  2092.     RTX_UNCHANGING_P (DECL_RTL (decl)) = 1;
  2093.  
  2094.   /* If doing stupid register allocation, make sure life of any
  2095.      register variable starts here, at the start of its scope.  */
  2096.  
  2097.   if (obey_regdecls)
  2098.     use_variable (DECL_RTL (decl));
  2099. }
  2100.  
  2101. /* Emit code to perform the initialization of a declaration DECL.  */
  2102.  
  2103. void
  2104. expand_decl_init (decl)
  2105.      tree decl;
  2106. {
  2107.   if (TREE_STATIC (decl))
  2108.     return;
  2109.  
  2110.   /* Compute and store the initial value now.  */
  2111.  
  2112.   if (DECL_INITIAL (decl) == error_mark_node)
  2113.     {
  2114.       enum tree_code code = TREE_CODE (TREE_TYPE (decl));
  2115.       if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
  2116.       || code == POINTER_TYPE)
  2117.     expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
  2118.                0, 0);
  2119.       emit_queue ();
  2120.     }
  2121.   else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
  2122.     {
  2123.       emit_line_note (DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
  2124.       expand_assignment (decl, DECL_INITIAL (decl), 0, 0);
  2125.       emit_queue ();
  2126.     }
  2127. }
  2128.  
  2129. /* DECL is an anonymous union.  CLEANUP is a cleanup for DECL.
  2130.    DECL_ELTS is the list of elements that belong to DECL's type.
  2131.    In each, the TREE_VALUE is a VAR_DECL, and the TREE_PURPOSE a cleanup.  */
  2132.  
  2133. void
  2134. expand_anon_union_decl (decl, cleanup, decl_elts)
  2135.      tree decl, cleanup, decl_elts;
  2136. {
  2137.   struct nesting *thisblock = block_stack;
  2138.   rtx x;
  2139.  
  2140.   expand_decl (decl, cleanup);
  2141.   x = DECL_RTL (decl);
  2142.  
  2143.   while (decl_elts)
  2144.     {
  2145.       tree decl_elt = TREE_VALUE (decl_elts);
  2146.       tree cleanup_elt = TREE_PURPOSE (decl_elts);
  2147.  
  2148.       DECL_RTL (decl_elt)
  2149.     = (GET_MODE (x) != BLKmode
  2150. /*
  2151. #error broken
  2152. /* ??? This is incorrect if X is a MEM.
  2153.    (SUBREG (MEM)) is not allowed at rtl generation time.  */
  2154.        ? gen_rtx (SUBREG, TYPE_MODE (TREE_TYPE (decl_elt)), x, 0)
  2155.        : x);
  2156.  
  2157.       /* Record the cleanup if there is one.  */
  2158.  
  2159.       if (cleanup != 0)
  2160.     thisblock->data.block.cleanups
  2161.       = temp_tree_cons (decl_elt, cleanup_elt,
  2162.                 thisblock->data.block.cleanups);
  2163.  
  2164.       decl_elts = TREE_CHAIN (decl_elts);
  2165.     }
  2166. }
  2167.  
  2168. /* Expand a list of cleanups LIST.
  2169.    Elements may be expressions or may be nested lists.
  2170.  
  2171.    If DONT_DO is nonnull, then any list-element
  2172.    whose TREE_PURPOSE matches DONT_DO is omitted.
  2173.    This is sometimes used to avoid a cleanup associated with
  2174.    a value that is being returned out of the scope.  */
  2175.  
  2176. static void
  2177. expand_cleanups (list, dont_do)
  2178.      tree list;
  2179.      tree dont_do;
  2180. {
  2181.   tree tail;
  2182.   for (tail = list; tail; tail = TREE_CHAIN (tail))
  2183.     if (dont_do == 0 || TREE_PURPOSE (tail) != dont_do)
  2184.       {
  2185.     if (TREE_CODE (TREE_VALUE (tail)) == TREE_LIST)
  2186.       expand_cleanups (TREE_VALUE (tail), dont_do);
  2187.     else
  2188.       expand_expr (TREE_VALUE (tail), const0_rtx, VOIDmode, 0);
  2189.       }
  2190. }
  2191.  
  2192. /* Expand a list of cleanups for a goto fixup.
  2193.    The expansion is put into the insn chain after the insn *BEFORE_JUMP
  2194.    and *BEFORE_JUMP is set to the insn that now comes before the jump.  */
  2195.  
  2196. static void
  2197. fixup_cleanups (list, before_jump)
  2198.      tree list;
  2199.      rtx *before_jump;
  2200. {
  2201.   rtx beyond_jump = get_last_insn ();
  2202.   rtx new_before_jump;
  2203.  
  2204.   expand_cleanups (list, 0);
  2205.   new_before_jump = get_last_insn ();
  2206.  
  2207.   reorder_insns (NEXT_INSN (beyond_jump), new_before_jump, *before_jump);
  2208.   *before_jump = new_before_jump;
  2209. }
  2210.  
  2211. /* Move all cleanups from the current block_stack
  2212.    to the containing block_stack, where they are assumed to
  2213.    have been created.  If anything can cause a temporary to
  2214.    be created, but not expanded for more than one level of
  2215.    block_stacks, then this code will have to change.  */
  2216.  
  2217. void
  2218. move_cleanups_up ()
  2219. {
  2220.   struct nesting *block = block_stack;
  2221.   struct nesting *outer = block->next;
  2222.  
  2223.   outer->data.block.cleanups
  2224.     = chainon (block->data.block.cleanups,
  2225.            outer->data.block.cleanups);
  2226.   block->data.block.cleanups = 0;
  2227. }
  2228.  
  2229. int
  2230. this_contour_has_cleanups_p ()
  2231. {
  2232.   return block_stack && block_stack->data.block.cleanups != 0;
  2233. }
  2234.  
  2235. /* Enter a case (Pascal) or switch (C) statement.
  2236.    Push a block onto case_stack and nesting_stack
  2237.    to accumulate the case-labels that are seen
  2238.    and to record the labels generated for the statement.
  2239.  
  2240.    EXIT_FLAG is nonzero if `exit_something' should exit this case stmt.
  2241.    Otherwise, this construct is transparent for `exit_something'.
  2242.  
  2243.    EXPR is the index-expression to be dispatched on.
  2244.    TYPE is its nominal type.  We could simply convert EXPR to this type,
  2245.    but instead we take short cuts.  */
  2246.  
  2247. void
  2248. expand_start_case (exit_flag, expr, type)
  2249.      int exit_flag;
  2250.      tree expr;
  2251.      tree type;
  2252. {
  2253.   register struct nesting *thiscase
  2254.     = (struct nesting *) xmalloc (sizeof (struct nesting));
  2255.  
  2256.   /* Make an entry on case_stack for the case we are entering.  */
  2257.  
  2258.   thiscase->next = case_stack;
  2259.   thiscase->all = nesting_stack;
  2260.   thiscase->depth = ++nesting_depth;
  2261.   thiscase->exit_label = exit_flag ? gen_label_rtx () : 0;
  2262.   thiscase->data.case_stmt.case_list = 0;
  2263.   thiscase->data.case_stmt.index_expr = expr;
  2264.   thiscase->data.case_stmt.nominal_type = type;
  2265.   thiscase->data.case_stmt.default_label = 0;
  2266.   thiscase->data.case_stmt.num_ranges = 0;
  2267.   case_stack = thiscase;
  2268.   nesting_stack = thiscase;
  2269.  
  2270.   do_pending_stack_adjust ();
  2271.  
  2272.   /* Make sure case_stmt.start points to something that won't
  2273.      need any transformation before expand_end_case.  */
  2274.   emit_note (0, NOTE_INSN_DELETED);
  2275.  
  2276.   thiscase->data.case_stmt.start = get_last_insn ();
  2277. }
  2278.  
  2279. /* Start a "dummy case statement" within which case labels are invalid
  2280.    and are not connected to any larger real case statement.
  2281.    This can be used if you don't want to let a case statement jump
  2282.    into the middle of certain kinds of constructs.  */
  2283.  
  2284. void
  2285. expand_start_case_dummy ()
  2286. {
  2287.   register struct nesting *thiscase
  2288.     = (struct nesting *) xmalloc (sizeof (struct nesting));
  2289.  
  2290.   /* Make an entry on case_stack for the dummy.  */
  2291.  
  2292.   thiscase->next = case_stack;
  2293.   thiscase->all = nesting_stack;
  2294.   thiscase->depth = ++nesting_depth;
  2295.   thiscase->exit_label = 0;
  2296.   thiscase->data.case_stmt.case_list = 0;
  2297.   thiscase->data.case_stmt.start = 0;
  2298.   thiscase->data.case_stmt.nominal_type = 0;
  2299.   thiscase->data.case_stmt.default_label = 0;
  2300.   thiscase->data.case_stmt.num_ranges = 0;
  2301.   case_stack = thiscase;
  2302.   nesting_stack = thiscase;
  2303. }
  2304.  
  2305. /* End a dummy case statement.  */
  2306.  
  2307. void
  2308. expand_end_case_dummy ()
  2309. {
  2310.   POPSTACK (case_stack);
  2311. }
  2312.  
  2313. /* Accumulate one case or default label inside a case or switch statement.
  2314.    VALUE is the value of the case (a null pointer, for a default label).
  2315.  
  2316.    If not currently inside a case or switch statement, return 1 and do
  2317.    nothing.  The caller will print a language-specific error message.
  2318.    If VALUE is a duplicate or overlaps, return 2 and do nothing.
  2319.    If VALUE is out of range, return 3 and do nothing.
  2320.    Return 0 on success.
  2321.  
  2322.    Extended to handle range statements, should they ever
  2323.    be adopted.  */
  2324.  
  2325. int
  2326. pushcase (value, label)
  2327.      register tree value;
  2328.      register tree label;
  2329. {
  2330.   register struct case_node **l;
  2331.   register struct case_node *n;
  2332.   tree index_type;
  2333.   tree nominal_type;
  2334.  
  2335.   /* Fail if not inside a real case statement.  */
  2336.   if (! (case_stack && case_stack->data.case_stmt.start))
  2337.     return 1;
  2338.  
  2339.   index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
  2340.   nominal_type = case_stack->data.case_stmt.nominal_type;
  2341.  
  2342.   /* If the index is erroneous, avoid more problems: pretend to succeed.  */
  2343.   if (index_type == error_mark_node)
  2344.     return 0;
  2345.  
  2346.   /* Convert VALUE to the type in which the comparisons are nominally done.  */
  2347.   if (value != 0)
  2348.     value = convert (nominal_type, value);
  2349.  
  2350.   /* Fail if this value is out of range for the actual type of the index
  2351.      (which may be narrower than NOMINAL_TYPE).  */
  2352.   if (value != 0 && ! int_fits_type_p (value, index_type))
  2353.     return 3;
  2354.  
  2355.   /* Fail if this is a duplicate or overlaps another entry.  */
  2356.   if (value == 0)
  2357.     {
  2358.       if (case_stack->data.case_stmt.default_label != 0)
  2359.     return 2;
  2360.       case_stack->data.case_stmt.default_label = label;
  2361.     }
  2362.   else
  2363.     {
  2364.       /* Find the elt in the chain before which to insert the new value,
  2365.      to keep the chain sorted in increasing order.
  2366.      But report an error if this element is a duplicate.  */
  2367.       for (l = &case_stack->data.case_stmt.case_list;
  2368.        /* Keep going past elements distinctly less than VALUE.  */
  2369.        *l != 0 && tree_int_cst_lt ((*l)->high, value);
  2370.        l = &(*l)->right)
  2371.     ;
  2372.       if (*l)
  2373.     {
  2374.       /* Element we will insert before must be distinctly greater;
  2375.          overlap means error.  */
  2376.       if (! tree_int_cst_lt (value, (*l)->low))
  2377.         return 2;
  2378.     }
  2379.  
  2380.       /* Add this label to the chain, and succeed.
  2381.      Copy VALUE so it is on temporary rather than momentary
  2382.      obstack and will thus survive till the end of the case statement.  */
  2383.       n = (struct case_node *) oballoc (sizeof (struct case_node));
  2384.       n->left = 0;
  2385.       n->right = *l;
  2386.       n->high = n->low = copy_node (value);
  2387.       n->code_label = label;
  2388.       n->test_label = 0;
  2389.       *l = n;
  2390.     }
  2391.  
  2392.   expand_label (label);
  2393.   return 0;
  2394. }
  2395.  
  2396. /* Like pushcase but this case applies to all values
  2397.    between VALUE1 and VALUE2 (inclusive).
  2398.    The return value is the same as that of pushcase
  2399.    but there is one additional error code:
  2400.    4 means the specified range was empty.
  2401.  
  2402.    Note that this does not currently work, since expand_end_case
  2403.    has yet to be extended to handle RANGE_EXPRs.  */
  2404.  
  2405. int
  2406. pushcase_range (value1, value2, label)
  2407.      register tree value1, value2;
  2408.      register tree label;
  2409. {
  2410.   register struct case_node **l;
  2411.   register struct case_node *n;
  2412.   tree index_type;
  2413.   tree nominal_type;
  2414.  
  2415.   /* Fail if not inside a real case statement.  */
  2416.   if (! (case_stack && case_stack->data.case_stmt.start))
  2417.     return 1;
  2418.  
  2419.   index_type = TREE_TYPE (case_stack->data.case_stmt.index_expr);
  2420.   nominal_type = case_stack->data.case_stmt.nominal_type;
  2421.  
  2422.   /* If the index is erroneous, avoid more problems: pretend to succeed.  */
  2423.   if (index_type == error_mark_node)
  2424.     return 0;
  2425.  
  2426.   /* Convert VALUEs to type in which the comparisons are nominally done.  */
  2427.   if (value1 != 0)
  2428.     value1 = convert (nominal_type, value1);
  2429.   if (value2 != 0)
  2430.     value2 = convert (nominal_type, value2);
  2431.  
  2432.   /* Fail if these values are out of range.  */
  2433.   if (value1 != 0 && ! int_fits_type_p (value1, index_type))
  2434.     return 3;
  2435.  
  2436.   if (value2 != 0 && ! int_fits_type_p (value2, index_type))
  2437.     return 3;
  2438.  
  2439.   /* Fail if the range is empty.  */
  2440.   if (tree_int_cst_lt (value2, value1))
  2441.     return 4;
  2442.  
  2443.   /* If the bounds are equal, turn this into the one-value case.  */
  2444.   if (tree_int_cst_equal (value1, value2))
  2445.     return pushcase (value1, label);
  2446.  
  2447.   /* Find the elt in the chain before which to insert the new value,
  2448.      to keep the chain sorted in increasing order.
  2449.      But report an error if this element is a duplicate.  */
  2450.   for (l = &case_stack->data.case_stmt.case_list;
  2451.        /* Keep going past elements distinctly less than this range.  */
  2452.        *l != 0 && tree_int_cst_lt ((*l)->high, value1);
  2453.        l = &(*l)->right)
  2454.     ;
  2455.   if (*l)
  2456.     {
  2457.       /* Element we will insert before must be distinctly greater;
  2458.      overlap means error.  */
  2459.       if (! tree_int_cst_lt (value2, (*l)->low))
  2460.     return 2;
  2461.     }
  2462.  
  2463.   /* Add this label to the chain, and succeed.
  2464.      Copy VALUE1, VALUE2 so they are on temporary rather than momentary
  2465.      obstack and will thus survive till the end of the case statement.  */
  2466.  
  2467.   n = (struct case_node *) oballoc (sizeof (struct case_node));
  2468.   n->left = 0;
  2469.   n->right = *l;
  2470.   n->low = copy_node (value1);
  2471.   n->high = copy_node (value2);
  2472.   n->code_label = label;
  2473.   n->test_label = 0;
  2474.   *l = n;
  2475.  
  2476.   expand_label (label);
  2477.  
  2478.   case_stack->data.case_stmt.num_ranges++;
  2479.  
  2480.   return 0;
  2481. }
  2482.  
  2483. /* Check that all enumeration literals are covered by the case
  2484.    expressions of a switch.  Also, warn if there are any extra
  2485.    switch cases that are *not* elements of the enumerated type. */
  2486.  
  2487. static void
  2488. check_for_full_enumeration_handling (type)
  2489.      tree type;
  2490. {
  2491.   register struct case_node *n;
  2492.   register tree chain;
  2493.           
  2494.   /* The time complexity of this loop is currently O(N * M), with
  2495.      N being the number of enumerals in the enumerated type, and 
  2496.      M being the number of case expressions in the switch. */
  2497.              
  2498.   for (chain = TYPE_VALUES (type);
  2499.        chain; 
  2500.        chain = TREE_CHAIN (chain))
  2501.     {
  2502.       /* Find a match between enumeral and case expression, if possible.
  2503.      Quit looking when we've gone too far (since case expressions
  2504.      are kept sorted in ascending order).  Warn about enumerals not
  2505.      handled in the switch statement case expression list. */
  2506.  
  2507.       for (n = case_stack->data.case_stmt.case_list; 
  2508.        n && tree_int_cst_lt (n->high, TREE_VALUE (chain));
  2509.        n = n->right)
  2510.     ;
  2511.  
  2512.       if (!(n && tree_int_cst_equal (n->low, TREE_VALUE (chain))))
  2513.     warning ("enumerated value `%s' not handled in switch",
  2514.          IDENTIFIER_POINTER (TREE_PURPOSE (chain)));
  2515.     }
  2516.  
  2517.   /* Now we go the other way around; we warn if there are case 
  2518.      expressions that don't correspond to enumerals.  This can
  2519.      occur since C and C++ don't enforce type-checking of 
  2520.      assignments to enumeration variables. */
  2521.  
  2522.   for (n = case_stack->data.case_stmt.case_list; n; n = n->right)
  2523.     {
  2524.       for (chain = TYPE_VALUES (type);
  2525.        chain && !tree_int_cst_equal (n->low, TREE_VALUE (chain)); 
  2526.        chain = TREE_CHAIN (chain))
  2527.     ;
  2528.  
  2529.       if (!chain)
  2530.     warning ("case value `%d' not in enumerated type `%s'",
  2531.          TREE_INT_CST_LOW (n->low), 
  2532.          IDENTIFIER_POINTER (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE
  2533.                      ? TYPE_NAME (type)
  2534.                      : DECL_NAME (TYPE_NAME (type))));
  2535.     }
  2536. }
  2537.  
  2538. /* Terminate a case (Pascal) or switch (C) statement
  2539.    in which CASE_INDEX is the expression to be tested.
  2540.    Generate the code to test it and jump to the right place.  */
  2541.  
  2542. void
  2543. expand_end_case (orig_index)
  2544.      tree orig_index;
  2545. {
  2546.   tree minval, maxval, range;
  2547.   rtx default_label = 0;
  2548.   register struct case_node *n;
  2549.   int count;
  2550.   rtx index;
  2551.   rtx table_label = gen_label_rtx ();
  2552.   int ncases;
  2553.   rtx *labelvec;
  2554.   register int i;
  2555.   rtx before_case;
  2556.   register struct nesting *thiscase = case_stack;
  2557.   tree index_expr = thiscase->data.case_stmt.index_expr;
  2558.   int unsignedp = TREE_UNSIGNED (TREE_TYPE (index_expr));
  2559.  
  2560.   do_pending_stack_adjust ();
  2561.  
  2562.   /* An ERROR_MARK occurs for various reasons including invalid data type.  */
  2563.   if (TREE_TYPE (index_expr) != error_mark_node)
  2564.     {
  2565.       /* If switch expression was an enumerated type, check that all
  2566.      enumeration literals are covered by the cases.
  2567.      No sense trying this if there's a default case, however.  */
  2568.  
  2569.       if (!thiscase->data.case_stmt.default_label 
  2570.       && TREE_CODE (TREE_TYPE (orig_index)) == ENUMERAL_TYPE
  2571.       && TREE_CODE (index_expr) != INTEGER_CST
  2572.       && warn_switch)
  2573.     check_for_full_enumeration_handling (TREE_TYPE (orig_index));
  2574.  
  2575.       /* If we don't have a default-label, create one here,
  2576.      after the body of the switch.  */
  2577.       if (thiscase->data.case_stmt.default_label == 0)
  2578.     {
  2579.       thiscase->data.case_stmt.default_label
  2580.         = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  2581.       expand_label (thiscase->data.case_stmt.default_label);
  2582.     }
  2583.       default_label = label_rtx (thiscase->data.case_stmt.default_label);
  2584.  
  2585.       before_case = get_last_insn ();
  2586.  
  2587.       /* Simplify the case-list before we count it.  */
  2588.       group_case_nodes (thiscase->data.case_stmt.case_list);
  2589.  
  2590.       /* Get upper and lower bounds of case values.
  2591.      Also convert all the case values to the index expr's data type.  */
  2592.  
  2593.       count = 0;
  2594.       for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
  2595.     {
  2596.       /* Check low and high label values are integers.  */
  2597.       if (TREE_CODE (n->low) != INTEGER_CST)
  2598.         abort ();
  2599.       if (TREE_CODE (n->high) != INTEGER_CST)
  2600.         abort ();
  2601.  
  2602.       n->low = convert (TREE_TYPE (index_expr), n->low);
  2603.       n->high = convert (TREE_TYPE (index_expr), n->high);
  2604.  
  2605.       /* Count the elements and track the largest and smallest
  2606.          of them (treating them as signed even if they are not).  */
  2607.       if (count++ == 0)
  2608.         {
  2609.           minval = n->low;
  2610.           maxval = n->high;
  2611.         }
  2612.       else
  2613.         {
  2614.           if (INT_CST_LT (n->low, minval))
  2615.         minval = n->low;
  2616.           if (INT_CST_LT (maxval, n->high))
  2617.         maxval = n->high;
  2618.         }
  2619.       /* A range counts double, since it requires two compares.  */
  2620.       if (! tree_int_cst_equal (n->low, n->high))
  2621.         count++;
  2622.     }
  2623.  
  2624.       /* Compute span of values.  */
  2625.       if (count != 0)
  2626.     range = combine (MINUS_EXPR, maxval, minval);
  2627.  
  2628.       if (count == 0 || TREE_CODE (TREE_TYPE (index_expr)) == ERROR_MARK)
  2629.     {
  2630.       expand_expr (index_expr, const0_rtx, VOIDmode, 0);
  2631.       emit_queue ();
  2632.       emit_jump (default_label);
  2633.     }
  2634.       /* If range of values is much bigger than number of values,
  2635.      make a sequence of conditional branches instead of a dispatch.
  2636.      If the switch-index is a constant, do it this way
  2637.      because we can optimize it.  */
  2638.       else if (TREE_INT_CST_HIGH (range) != 0
  2639. #ifdef HAVE_casesi
  2640.            || count < 4
  2641. #else
  2642.            /* If machine does not have a case insn that compares the
  2643.           bounds, this means extra overhead for dispatch tables
  2644.           which raises the threshold for using them.  */
  2645.            || count < 5
  2646. #endif
  2647.            || (unsigned) (TREE_INT_CST_LOW (range)) > 10 * count
  2648.            || TREE_CODE (index_expr) == INTEGER_CST)
  2649.     {
  2650.       index = expand_expr (index_expr, 0, VOIDmode, 0);
  2651.  
  2652.       /* If the index is a short or char that we do not have
  2653.          an insn to handle comparisons directly, convert it to
  2654.          a full integer now, rather than letting each comparison
  2655.          generate the conversion.  */
  2656.  
  2657.       if ((GET_MODE (index) == QImode || GET_MODE (index) == HImode)
  2658.           && (cmp_optab->handlers[(int) GET_MODE(index)].insn_code
  2659.           == CODE_FOR_nothing))
  2660.         index = convert_to_mode (SImode, index, unsignedp);
  2661.       
  2662.       emit_queue ();
  2663.       do_pending_stack_adjust ();
  2664.  
  2665.       index = protect_from_queue (index, 0);
  2666.       if (GET_CODE (index) == MEM)
  2667.         index = copy_to_reg (index);
  2668.       if (GET_CODE (index) == CONST_INT
  2669.           || TREE_CODE (index_expr) == INTEGER_CST)
  2670.         {
  2671.           /* Make a tree node with the proper constant value
  2672.          if we don't already have one.  */
  2673.           if (TREE_CODE (index_expr) != INTEGER_CST)
  2674.         {
  2675.           index_expr
  2676.             = build_int_2 (INTVAL (index),
  2677.                    !unsignedp && INTVAL (index) >= 0 ? 0 : -1);
  2678.           index_expr = convert (TREE_TYPE (index_expr), index_expr);
  2679.         }
  2680.  
  2681.           /* For constant index expressions we need only
  2682.          issue a unconditional branch to the appropriate
  2683.          target code.  The job of removing any unreachable
  2684.          code is left to the optimisation phase if the
  2685.          "-O" option is specified.  */
  2686.           for (n = thiscase->data.case_stmt.case_list;
  2687.            n;
  2688.            n = n->right)
  2689.         {
  2690.           if (! tree_int_cst_lt (index_expr, n->low)
  2691.               && ! tree_int_cst_lt (n->high, index_expr))
  2692.             break;
  2693.         }
  2694.           if (n)
  2695.         emit_jump (label_rtx (n->code_label));
  2696.           else
  2697.         emit_jump (default_label);
  2698.         }
  2699.       else
  2700.         {
  2701.           /* If the index expression is not constant we generate
  2702.          a binary decision tree to select the appropriate
  2703.          target code.  This is done as follows:
  2704.  
  2705.          The list of cases is rearranged into a binary tree,
  2706.          nearly optimal assuming equal probability for each case.
  2707.  
  2708.          The tree is transformed into RTL, eliminating
  2709.          redundant test conditions at the same time.
  2710.  
  2711.          If program flow could reach the end of the
  2712.          decision tree an unconditional jump to the
  2713.          default code is emitted.  */
  2714.           balance_case_nodes (&thiscase->data.case_stmt.case_list, 0);
  2715.           emit_case_nodes (index, thiscase->data.case_stmt.case_list,
  2716.                    default_label, unsignedp);
  2717.           emit_jump_if_reachable (default_label);
  2718.         }
  2719.     }
  2720.       else
  2721.     {
  2722. #ifdef HAVE_casesi
  2723.       /* Convert the index to SImode.  */
  2724.       if (TYPE_MODE (TREE_TYPE (index_expr)) == DImode)
  2725.         {
  2726.           index_expr = build (MINUS_EXPR, TREE_TYPE (index_expr),
  2727.                   index_expr, minval);
  2728.           minval = integer_zero_node;
  2729.         }
  2730.       if (TYPE_MODE (TREE_TYPE (index_expr)) != SImode)
  2731.         index_expr = convert (type_for_size (GET_MODE_BITSIZE (SImode), 0),
  2732.                   index_expr);
  2733.       index = expand_expr (index_expr, 0, VOIDmode, 0);
  2734.       emit_queue ();
  2735.       index = protect_from_queue (index, 0);
  2736.       do_pending_stack_adjust ();
  2737.  
  2738.       emit_jump_insn (gen_casesi (index, expand_expr (minval, 0, VOIDmode, 0),
  2739.                       expand_expr (range, 0, VOIDmode, 0),
  2740.                       table_label, default_label));
  2741. #else
  2742. #ifdef HAVE_tablejump
  2743.       index_expr = convert (type_for_size (GET_MODE_BITSIZE (SImode), 0),
  2744.                 build (MINUS_EXPR, TREE_TYPE (index_expr),
  2745.                        index_expr, minval));
  2746.       index = expand_expr (index_expr, 0, VOIDmode, 0);
  2747.       emit_queue ();
  2748.       index = protect_from_queue (index, 0);
  2749.       do_pending_stack_adjust ();
  2750.  
  2751.       do_tablejump (index,
  2752.             gen_rtx (CONST_INT, VOIDmode, TREE_INT_CST_LOW (range)),
  2753.             table_label, default_label);
  2754. #else
  2755.       lossage;
  2756. #endif                /* not HAVE_tablejump */
  2757. #endif                /* not HAVE_casesi */
  2758.  
  2759.       /* Get table of labels to jump to, in order of case index.  */
  2760.  
  2761.       ncases = TREE_INT_CST_LOW (range) + 1;
  2762.       labelvec = (rtx *) alloca (ncases * sizeof (rtx));
  2763.       bzero (labelvec, ncases * sizeof (rtx));
  2764.  
  2765.       for (n = thiscase->data.case_stmt.case_list; n; n = n->right)
  2766.         {
  2767.           register int i
  2768.         = TREE_INT_CST_LOW (n->low) - TREE_INT_CST_LOW (minval);
  2769.  
  2770.           while (i + TREE_INT_CST_LOW (minval)
  2771.              <= TREE_INT_CST_LOW (n->high))
  2772.         labelvec[i++]
  2773.           = gen_rtx (LABEL_REF, Pmode, label_rtx (n->code_label));
  2774.         }
  2775.  
  2776.       /* Fill in the gaps with the default.  */
  2777.       for (i = 0; i < ncases; i++)
  2778.         if (labelvec[i] == 0)
  2779.           labelvec[i] = gen_rtx (LABEL_REF, Pmode, default_label);
  2780.  
  2781.       /* Output the table */
  2782.       emit_label (table_label);
  2783.  
  2784. #ifdef CASE_VECTOR_PC_RELATIVE
  2785.       emit_jump_insn (gen_rtx (ADDR_DIFF_VEC, CASE_VECTOR_MODE,
  2786.                    gen_rtx (LABEL_REF, Pmode, table_label),
  2787.                    gen_rtvec_v (ncases, labelvec)));
  2788. #else
  2789.       emit_jump_insn (gen_rtx (ADDR_VEC, CASE_VECTOR_MODE,
  2790.                    gen_rtvec_v (ncases, labelvec)));
  2791. #endif
  2792.       /* If the case insn drops through the table,
  2793.          after the table we must jump to the default-label.
  2794.          Otherwise record no drop-through after the table.  */
  2795. #ifdef CASE_DROPS_THROUGH
  2796.       emit_jump (default_label);
  2797. #else
  2798.       emit_barrier ();
  2799. #endif
  2800.     }
  2801.  
  2802.       reorder_insns (NEXT_INSN (before_case), get_last_insn (),
  2803.              thiscase->data.case_stmt.start);
  2804.     }
  2805.   if (thiscase->exit_label)
  2806.     emit_label (thiscase->exit_label);
  2807.  
  2808.   POPSTACK (case_stack);
  2809. }
  2810.  
  2811. /* Generate code to jump to LABEL if OP1 and OP2 are equal.  */
  2812.  
  2813. static void
  2814. do_jump_if_equal (op1, op2, label, unsignedp)
  2815.      rtx op1, op2, label;
  2816.      int unsignedp;
  2817. {
  2818.   if (GET_CODE (op1) == CONST_INT
  2819.       && GET_CODE (op2) == CONST_INT)
  2820.     {
  2821.       if (INTVAL (op1) == INTVAL (op2))
  2822.     emit_jump (label);
  2823.     }
  2824.   else
  2825.     {
  2826.       emit_cmp_insn (op1, op2, 0, unsignedp, 0);
  2827. #if defined( DSP56000 )
  2828.       /* unsigend equality is special on the 56k. */
  2829.       if ( unsignedp )
  2830.       {
  2831.       emit_jump_insn (gen_bequ (label));
  2832.       }
  2833.       else
  2834.       {
  2835.       emit_jump_insn (gen_beq (label));
  2836.       }
  2837. #else
  2838.       emit_jump_insn (gen_beq (label));
  2839. #endif
  2840.     }
  2841. }
  2842.  
  2843. /* Scan an ordered list of case nodes
  2844.    combining those with consecutive values or ranges.
  2845.  
  2846.    Eg. three separate entries 1: 2: 3: become one entry 1..3:  */
  2847.  
  2848. static void
  2849. group_case_nodes (head)
  2850.      case_node_ptr head;
  2851. {
  2852.   case_node_ptr node = head;
  2853.  
  2854.   while (node)
  2855.     {
  2856.       rtx lb = next_real_insn (label_rtx (node->code_label));
  2857.       case_node_ptr np = node;
  2858.  
  2859.       /* Try to group the successors of NODE with NODE.  */
  2860.       while (((np = np->right) != 0)
  2861.          /* Do they jump to the same place?  */
  2862.          && next_real_insn (label_rtx (np->code_label)) == lb
  2863.          /* Are their ranges consecutive?  */
  2864. #if defined( DSP96000 ) || defined( DSP56000 )
  2865.          /* an overflow case breaks the sequential series. */
  2866.          && ! tree_int_cst_equal (np->low, build_int_2 (0, 0))
  2867. #endif
  2868.          && tree_int_cst_equal (np->low,
  2869.                     combine (PLUS_EXPR, node->high,
  2870.                          build_int_2 (1, 0))))
  2871.     {
  2872.       node->high = np->high;
  2873.     }
  2874.       /* NP is the first node after NODE which can't be grouped with it.
  2875.      Delete the nodes in between, and move on to that node.  */
  2876.       node->right = np;
  2877.       node = np;
  2878.     }
  2879. }
  2880.  
  2881. /* Take an ordered list of case nodes
  2882.    and transform them into a near optimal binary tree,
  2883.    on the assumtion that any target code selection value is as
  2884.    likely as any other.
  2885.  
  2886.    The transformation is performed by splitting the ordered
  2887.    list into two equal sections plus a pivot.  The parts are
  2888.    then attached to the pivot as left and right branches.  Each
  2889.    branch is is then transformed recursively.  */
  2890.  
  2891. static void
  2892. balance_case_nodes (head, parent)
  2893.      case_node_ptr *head;
  2894.      case_node_ptr parent;
  2895. {
  2896.   register case_node_ptr np;
  2897.  
  2898.   np = *head;
  2899.   if (np)
  2900.     {
  2901.       int i = 0;
  2902.       int ranges = 0;
  2903.       register case_node_ptr *npp;
  2904.       case_node_ptr left;
  2905.  
  2906.       /* Count the number of entries on branch.
  2907.      Also count the ranges.  */
  2908.       while (np)
  2909.     {
  2910.       if (!tree_int_cst_equal (np->low, np->high))
  2911.         ranges++;
  2912.       i++;
  2913.       np = np->right;
  2914.     }
  2915.       if (i > 2)
  2916.     {
  2917.       /* Split this list if it is long enough for that to help.  */
  2918.       npp = head;
  2919.       left = *npp;
  2920.       /* If there are just three nodes, split at the middle one.  */
  2921.       if (i == 3)
  2922.         npp = &(*npp)->right;
  2923.       else
  2924.         {
  2925.           /* Find the place in the list that bisects the list's total cost,
  2926.          where ranges count as 2.
  2927.          Here I gets half the total cost.  */
  2928.           i = (i + ranges + 1) / 2;
  2929.           while (1)
  2930.         {
  2931.           /* Skip nodes while their cost does not reach that amount.  */
  2932.           if (!tree_int_cst_equal ((*npp)->low, (*npp)->high))
  2933.             i--;
  2934.           i--;
  2935.           if (i <= 0)
  2936.             break;
  2937.           npp = &(*npp)->right;
  2938.         }
  2939.         }
  2940.       *head = np = *npp;
  2941.       *npp = 0;
  2942.       np->parent = parent;
  2943.       np->left = left;
  2944.  
  2945.       /* Optimize each of the two split parts.  */
  2946.       balance_case_nodes (&np->left, np);
  2947.       balance_case_nodes (&np->right, np);
  2948.     }
  2949.       else
  2950.     {
  2951.       /* Else leave this branch as one level,
  2952.          but fill in `parent' fields.  */
  2953.       np = *head;
  2954.       np->parent = parent;
  2955.       for (; np->right; np = np->right)
  2956.         np->right->parent = np;
  2957.     }
  2958.     }
  2959. }
  2960.  
  2961. /* Search the parent sections of the case node tree
  2962.    to see if a test for the lower bound of NODE would be redundant.
  2963.  
  2964.    The instructions to synthesis the case decision tree are
  2965.    output in the same order as nodes are processed so it is
  2966.    known that if a parent node checks the range of the current
  2967.    node minus one that the current node is bounded at its lower
  2968.    span.  Thus the test would be redundant.  */
  2969.  
  2970. static int
  2971. node_has_low_bound (node)
  2972.      case_node_ptr node;
  2973. {
  2974.   tree low_minus_one;
  2975.   case_node_ptr pnode;
  2976.  
  2977.   if (node->left)
  2978.     {
  2979.       low_minus_one = combine (MINUS_EXPR, node->low, build_int_2 (1, 0));
  2980.       /* Avoid the screw case of overflow where low_minus_one is > low.  */
  2981.       if (tree_int_cst_lt (low_minus_one, node->low))
  2982.     for (pnode = node->parent; pnode; pnode = pnode->parent)
  2983.       {
  2984.         if (tree_int_cst_equal (low_minus_one, pnode->high))
  2985.           return 1;
  2986.         /* If a parent node has a left branch we know that none
  2987.            of its parents can have a high bound of our target
  2988.            minus one so we abort the search.  */
  2989.         if (node->left)
  2990.           break;
  2991.       }
  2992.     }
  2993.   return 0;
  2994. }
  2995.  
  2996. /* Search the parent sections of the case node tree
  2997.    to see if a test for the upper bound of NODE would be redundant.
  2998.  
  2999.    The instructions to synthesis the case decision tree are
  3000.    output in the same order as nodes are processed so it is
  3001.    known that if a parent node checks the range of the current
  3002.    node plus one that the current node is bounded at its upper
  3003.    span.  Thus the test would be redundant.  */
  3004.  
  3005. static int
  3006. node_has_high_bound (node)
  3007.      case_node_ptr node;
  3008. {
  3009.   tree high_plus_one;
  3010.   case_node_ptr pnode;
  3011.  
  3012.   if (node->right == 0)
  3013.     {
  3014.       high_plus_one = combine (PLUS_EXPR, node->high, build_int_2 (1, 0));
  3015.       /* Avoid the screw case of overflow where high_plus_one is > high.  */
  3016.       if (tree_int_cst_lt (node->high, high_plus_one))
  3017.     for (pnode = node->parent; pnode; pnode = pnode->parent)
  3018.       {
  3019.         if (tree_int_cst_equal (high_plus_one, pnode->low))
  3020.           return 1;
  3021.         /* If a parent node has a right branch we know that none
  3022.            of its parents can have a low bound of our target
  3023.            plus one so we abort the search.  */
  3024.         if (node->right)
  3025.           break;
  3026.       }
  3027.     }
  3028.   return 0;
  3029. }
  3030.  
  3031. /* Search the parent sections of the
  3032.    case node tree to see if both tests for the upper and lower
  3033.    bounds of NODE would be redundant.  */
  3034.  
  3035. static int
  3036. node_is_bounded (node)
  3037.      case_node_ptr node;
  3038. {
  3039.   if (node->left || node->right)
  3040.     return 0;
  3041.   return node_has_low_bound (node) && node_has_high_bound (node);
  3042. }
  3043.  
  3044. /*  Emit an unconditional jump to LABEL unless it would be dead code.  */
  3045.  
  3046. static void
  3047. emit_jump_if_reachable (label)
  3048.      rtx label;
  3049. {
  3050.   rtx last_insn;
  3051.  
  3052.   if (GET_CODE (get_last_insn ()) != BARRIER)
  3053.     emit_jump (label);
  3054. }
  3055.  
  3056. /* Emit step-by-step code to select a case for the value of INDEX.
  3057.    The thus generated decision tree follows the form of the
  3058.    case-node binary tree NODE, whose nodes represent test conditions.
  3059.    UNSIGNEDP is nonzero if we should do unsigned comparisons.
  3060.  
  3061.    Care is taken to prune redundant tests from the decision tree
  3062.    by detecting any boundary conditions already checked by
  3063.    emitted rtx.  (See node_has_high_bound, node_has_low_bound
  3064.    and node_is_bounded, above.)
  3065.  
  3066.    Where the test conditions can be shown to be redundant we emit
  3067.    an unconditional jump to the target code.  As a further
  3068.    optimization, the subordinates of a tree node are examined to
  3069.    check for bounded nodes.  In this case conditional and/or
  3070.    unconditional jumps as a result of the boundary check for the
  3071.    current node are arranged to target the subordinates associated
  3072.    code for out of bound conditions on the current node node.  */
  3073.  
  3074. static void
  3075. emit_case_nodes (index, node, default_label, unsignedp)
  3076.      rtx index;
  3077.      case_node_ptr node;
  3078.      rtx default_label;
  3079.      int unsignedp;
  3080. {
  3081.   /* If INDEX has an unsigned type, we must make unsigned branches.  */
  3082.   typedef rtx rtx_function ();
  3083.   rtx_function *gen_bgt_pat = unsignedp ? gen_bgtu : gen_bgt;
  3084.   rtx_function *gen_bge_pat = unsignedp ? gen_bgeu : gen_bge;
  3085.   rtx_function *gen_blt_pat = unsignedp ? gen_bltu : gen_blt;
  3086.   rtx_function *gen_ble_pat = unsignedp ? gen_bleu : gen_ble;
  3087.  
  3088.   if (node->test_label)
  3089.     {
  3090.       /* If this test node requires a label it follows that
  3091.      it must be preceeded by an unconditional branch.
  3092.      If control can pass to this point we can assume that
  3093.      a "br default" is in order.  */
  3094.       emit_jump_if_reachable (default_label);
  3095.       expand_label (node->test_label);
  3096.     }
  3097.   if (tree_int_cst_equal (node->low, node->high))
  3098.     {
  3099.       /* Node is single valued.  */
  3100.       do_jump_if_equal (index, expand_expr (node->low, 0, VOIDmode, 0),
  3101.             label_rtx (node->code_label), unsignedp);
  3102.       if (node->right)
  3103.     {
  3104.       if (node->left)
  3105.         {
  3106.           /* This node has children on either side.  */
  3107.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0), 0, unsignedp, 0);
  3108.  
  3109.           if (node_is_bounded (node->right))
  3110.         {
  3111.           emit_jump_insn ((*gen_bgt_pat) (label_rtx (node->right->code_label)));
  3112.           if (node_is_bounded (node->left))
  3113.             emit_jump (label_rtx (node->left->code_label));
  3114.           else
  3115.             emit_case_nodes (index, node->left,
  3116.                      default_label, unsignedp);
  3117.         }
  3118.           else
  3119.         {
  3120.           if (node_is_bounded (node->left))
  3121.             emit_jump_insn ((*gen_blt_pat) (label_rtx (node->left->code_label)));
  3122.           else
  3123.             {
  3124.               node->right->test_label =
  3125.             build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3126.               emit_jump_insn ((*gen_bgt_pat) (label_rtx (node->right->test_label)));
  3127.               emit_case_nodes (index, node->left,
  3128.                        default_label, unsignedp);
  3129.             }
  3130.           emit_case_nodes (index, node->right,
  3131.                    default_label, unsignedp);
  3132.         }
  3133.         }
  3134.       else
  3135.         {
  3136.           /* Here we have a right child but no left
  3137.          so we issue conditional branch to default
  3138.          and process the right child.  */
  3139.  
  3140.           /* Omit the conditional branch to default
  3141.          if we it avoid only one right child;
  3142.          it costs too much space to save so little time.  */
  3143.           if (node->right->right && !node_has_low_bound (node))
  3144.         {
  3145.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0), 0, unsignedp, 0);
  3146.           emit_jump_insn ((*gen_blt_pat) (default_label));
  3147.         }
  3148.           if (node_is_bounded (node->right))
  3149.         emit_jump (label_rtx (node->right->code_label));
  3150.           else
  3151.         emit_case_nodes (index, node->right, default_label, unsignedp);
  3152.         }
  3153.     }
  3154.       else if (node->left)
  3155.     {
  3156.       if (node_is_bounded (node->left))
  3157.         emit_jump (label_rtx (node->left->code_label));
  3158.       else
  3159.         emit_case_nodes (index, node->left, default_label, unsignedp);
  3160.     }
  3161.     }
  3162.   else
  3163.     {
  3164.       /* Node is a range.  */
  3165.       if (node->right)
  3166.     {
  3167.       if (node->left)
  3168.         {
  3169.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0), 0, unsignedp, 0);
  3170.           if (node_is_bounded (node->right))
  3171.         {
  3172.           /* Right hand node is fully bounded so we can
  3173.              eliminate any testing and branch directly
  3174.              to the target code.  */
  3175.           emit_jump_insn ((*gen_bgt_pat) (label_rtx (node->right->code_label)));
  3176.         }
  3177.           else
  3178.         {
  3179.           /* Right hand node requires testing so create
  3180.              a label to put on the cmp code.  */
  3181.           node->right->test_label =
  3182.             build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3183.           emit_jump_insn ((*gen_bgt_pat) (label_rtx (node->right->test_label)));
  3184.         }
  3185.           emit_cmp_insn (index, expand_expr (node->low, 0, VOIDmode, 0), 0, unsignedp, 0);
  3186.           emit_jump_insn ((*gen_bge_pat) (label_rtx (node->code_label)));
  3187.           if (node_is_bounded (node->left))
  3188.         {
  3189.           /* Left hand node is fully bounded so we can
  3190.              eliminate any testing and branch directly
  3191.              to the target code.  */
  3192.           emit_jump (label_rtx (node->left->code_label));
  3193.         }
  3194.           else
  3195.         emit_case_nodes (index, node->left, default_label, unsignedp);
  3196.           /* If right node has been given a test label above
  3197.          we must process it now.  */
  3198.           if (node->right->test_label)
  3199.         emit_case_nodes (index, node->right, default_label, unsignedp);
  3200.         }
  3201.       else
  3202.         {
  3203.           if (!node_has_low_bound (node))
  3204.         {
  3205.           emit_cmp_insn (index, expand_expr (node->low, 0, VOIDmode, 0), 0, unsignedp, 0);
  3206.           emit_jump_insn ((*gen_blt_pat) (default_label));
  3207.         }
  3208.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0), 0, unsignedp, 0);
  3209.           emit_jump_insn ((*gen_ble_pat) (label_rtx (node->code_label)));
  3210.           if (node_is_bounded (node->right))
  3211.         {
  3212.           /* Right hand node is fully bounded so we can
  3213.              eliminate any testing and branch directly
  3214.              to the target code.  */
  3215.           emit_jump (label_rtx (node->right->code_label));
  3216.         }
  3217.           else
  3218.         emit_case_nodes (index, node->right, default_label, unsignedp);
  3219.         }
  3220.     }
  3221.       else if (node->left)
  3222.     {
  3223.       if (!node_has_high_bound (node))
  3224.         {
  3225.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0), 0, unsignedp, 0);
  3226.           emit_jump_insn ((*gen_bgt_pat) (default_label));
  3227.         }
  3228.       emit_cmp_insn (index, expand_expr (node->low, 0, VOIDmode, 0), 0, unsignedp, 0);
  3229.       emit_jump_insn ((*gen_bge_pat) (label_rtx (node->code_label)));
  3230.       if (node_is_bounded (node->left))
  3231.         {
  3232.           /* Left hand node is fully bounded so we can
  3233.          eliminate any testing and branch directly
  3234.          to the target code.  */
  3235.           emit_jump (label_rtx (node->left->code_label));
  3236.         }
  3237.       else
  3238.         emit_case_nodes (index, node->left, default_label, unsignedp);
  3239.     }
  3240.       else
  3241.     {
  3242.       /* Node has no children so we check low and
  3243.          high bounds to remove redundant tests. In practice
  3244.          only one of the limits may be bounded or the parent
  3245.          node will have emmited a jump to our target code.  */
  3246.       if (!node_has_high_bound (node))
  3247.         {
  3248.           emit_cmp_insn (index, expand_expr (node->high, 0, VOIDmode, 0), 0, unsignedp, 0);
  3249.           emit_jump_insn ((*gen_bgt_pat) (default_label));
  3250.         }
  3251.       if (!node_has_low_bound (node))
  3252.         {
  3253.           emit_cmp_insn (index, expand_expr (node->low, 0, VOIDmode, 0), 0, unsignedp, 0);
  3254.           emit_jump_insn ((*gen_bge_pat) (label_rtx (node->code_label)));
  3255.         }
  3256.       /* We allow the default case to drop through since
  3257.          it will picked up by calls to `jump_if_reachable'
  3258.          either on the next test label or at the end of
  3259.          the decision tree emission.  */
  3260.     }
  3261.     }
  3262. }
  3263.  
  3264. /* Allocate fixed slots in the stack frame of the current function.  */
  3265.  
  3266. /* Return size needed for stack frame based on slots so far allocated.  */
  3267.  
  3268. int
  3269. get_frame_size ()
  3270. {
  3271. #ifdef FRAME_GROWS_DOWNWARD
  3272.   return -frame_offset + STARTING_FRAME_OFFSET;
  3273. #else
  3274.   return frame_offset - STARTING_FRAME_OFFSET;
  3275. #endif
  3276. }
  3277.  
  3278. /* Allocate a stack slot of SIZE bytes and return a MEM rtx for it
  3279.    with machine mode MODE.  */
  3280.  
  3281. rtx
  3282. assign_stack_local (mode, size)
  3283.      enum machine_mode mode;
  3284.      int size;
  3285. {
  3286.   register rtx x, addr;
  3287.   int bigend_correction = 0;
  3288.  
  3289.   frame_pointer_needed = 1;
  3290.  
  3291.   /* Make each stack slot a multiple of the main allocation unit.  */
  3292.   size = (((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
  3293.        / (BIGGEST_ALIGNMENT / BITS_PER_UNIT))
  3294.       * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
  3295.  
  3296.   /* On a big-endian machine, if we are allocating more space than we will use,
  3297.      use the least significant bytes of those that are allocated.  */
  3298. #ifdef BYTES_BIG_ENDIAN
  3299.   if (mode != BLKmode)
  3300.     bigend_correction = size - GET_MODE_SIZE (mode);
  3301. #endif
  3302.  
  3303. #ifdef FRAME_GROWS_DOWNWARD
  3304.   frame_offset -= size;
  3305. #endif
  3306.   addr = gen_rtx (PLUS, Pmode, frame_pointer_rtx,
  3307.           gen_rtx (CONST_INT, VOIDmode,
  3308.                (frame_offset + bigend_correction)));
  3309. #ifndef FRAME_GROWS_DOWNWARD
  3310.   frame_offset += size;
  3311. #endif
  3312.  
  3313.   if (! memory_address_p (mode, addr))
  3314.     invalid_stack_slot = 1;
  3315.  
  3316.   x = gen_rtx (MEM, mode, addr);
  3317.  
  3318.   stack_slot_list = gen_rtx (EXPR_LIST, VOIDmode, x, stack_slot_list);
  3319.  
  3320.   return x;
  3321. }
  3322.  
  3323. /* Retroactively move an auto variable from a register to a stack slot.
  3324.    This is done when an address-reference to the variable is seen.  */
  3325.  
  3326. void
  3327. put_var_into_stack (decl)
  3328.      tree decl;
  3329. {
  3330.   register rtx reg = DECL_RTL (decl);
  3331.   register rtx new;
  3332.  
  3333.   /* No need to do anything if decl has no rtx yet
  3334.      since in that case caller is setting TREE_ADDRESSABLE
  3335.      and a stack slot will be assigned when the rtl is made.  */
  3336.   if (reg == 0)
  3337.     return;
  3338.   if (GET_CODE (reg) != REG)
  3339.     return;
  3340.  
  3341.   new = parm_stack_loc (reg);
  3342.   if (new == 0)
  3343.     new = assign_stack_local (GET_MODE (reg), GET_MODE_SIZE (GET_MODE (reg)));
  3344.  
  3345.   XEXP (reg, 0) = XEXP (new, 0);
  3346.   /* `volatil' bit means one thing for MEMs, another entirely for REGs.  */
  3347.   REG_USERVAR_P (reg) = 0;
  3348.   PUT_CODE (reg, MEM);
  3349.  
  3350.   /* If this is a memory ref that contains aggregate components,
  3351.      mark it as such for cse and loop optimize.  */
  3352.   MEM_IN_STRUCT_P (reg)
  3353.     = (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
  3354.        || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
  3355.        || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE);
  3356.  
  3357.   fixup_var_refs (reg);
  3358. }
  3359.  
  3360. static void
  3361. fixup_var_refs (var)
  3362.      rtx var;
  3363. {
  3364.   extern rtx sequence_stack;
  3365.   rtx stack = sequence_stack;
  3366.   tree pending;
  3367.  
  3368.   stack = sequence_stack;
  3369.  
  3370.   /* Must scan all insns for stack-refs that exceed the limit.  */
  3371.   fixup_var_refs_insns (var, get_insns (), stack == 0);
  3372.  
  3373.   /* Scan all pending sequences too.  */
  3374.   for (; stack; stack = XEXP (XEXP (stack, 1), 1))
  3375.     {
  3376.       push_to_sequence (XEXP (stack, 0));
  3377.       fixup_var_refs_insns (var, XEXP (stack, 0),
  3378.                 XEXP (XEXP (stack, 1), 1) == 0);
  3379.       /* Update remembered end of sequence
  3380.      in case we added an insn at the end.  */
  3381.       XEXP (XEXP (stack, 1), 0) = get_last_insn ();
  3382.       end_sequence ();
  3383.     }
  3384.  
  3385.   /* Scan all waiting RTL_EXPRs too.  */
  3386.   for (pending = rtl_expr_chain; pending; pending = TREE_CHAIN (pending))
  3387.     {
  3388.       rtx seq = RTL_EXPR_SEQUENCE (TREE_VALUE (pending));
  3389.       if (seq != const0_rtx && seq != 0)
  3390.     {
  3391.       push_to_sequence (seq);
  3392.       fixup_var_refs_insns (var, seq, 0);
  3393.       end_sequence ();
  3394.     }
  3395.     }
  3396. }
  3397.  
  3398. /* Scan the insn-chain starting with INSN for refs to VAR
  3399.    and fix them up.  TOPLEVEL is nonzero if this chain is the
  3400.    main chain of insns for the current function.  */
  3401.  
  3402. static void
  3403. fixup_var_refs_insns (var, insn, toplevel)
  3404.      rtx var;
  3405.      rtx insn;
  3406.      int toplevel;
  3407. {
  3408.   while (insn)
  3409.     {
  3410.       rtx next = NEXT_INSN (insn);
  3411.       rtx note;
  3412.       if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN
  3413.       || GET_CODE (insn) == JUMP_INSN)
  3414.     {
  3415.       /* The insn to load VAR from a home in the arglist
  3416.          is now a no-op.  When we see it, just delete it.  */
  3417.       if (toplevel
  3418.           && GET_CODE (PATTERN (insn)) == SET
  3419.           && SET_DEST (PATTERN (insn)) == var
  3420.           && rtx_equal_p (SET_SRC (PATTERN (insn)), var))
  3421.         {
  3422.           next = delete_insn (insn);
  3423.           if (insn == last_parm_insn)
  3424.         last_parm_insn = PREV_INSN (next);
  3425.         }
  3426.       else
  3427.         fixup_var_refs_1 (var, PATTERN (insn), insn);
  3428.       /* Also fix up any invalid exprs in the REG_NOTES of this insn.
  3429.          But don't touch other insns referred to by reg-notes;
  3430.          we will get them elsewhere.  */
  3431.       for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
  3432.         if (GET_CODE (note) != INSN_LIST)
  3433.           XEXP (note, 0) = walk_fixup_memory_subreg (XEXP (note, 0), insn);
  3434.     }
  3435.       insn = next;
  3436.     }
  3437. }
  3438.  
  3439. static rtx
  3440. fixup_var_refs_1 (var, x, insn)
  3441.      register rtx var;
  3442.      register rtx x;
  3443.      rtx insn;
  3444. {
  3445.   register int i;
  3446.   RTX_CODE code = GET_CODE (x);
  3447.   register char *fmt;
  3448.   register rtx tem;
  3449.  
  3450.   switch (code)
  3451.     {
  3452.     case MEM:
  3453.       if (var == x)
  3454.     {
  3455.       x = fixup_stack_1 (x, insn);
  3456.       tem = gen_reg_rtx (GET_MODE (x));
  3457.       /* Put new insn before a CALL, before any USEs before it.  */
  3458.       if (GET_CODE (insn) == CALL_INSN)
  3459.         while (PREV_INSN (insn) != 0 && GET_CODE (PREV_INSN (insn)) == INSN
  3460.            && GET_CODE (PATTERN (PREV_INSN (insn))) == USE)
  3461.           insn = PREV_INSN (insn);
  3462.       emit_insn_before (gen_move_insn (tem, x), insn);
  3463.       return tem;
  3464.     }
  3465.       break;
  3466.  
  3467.     case REG:
  3468.     case CC0:
  3469.     case PC:
  3470.     case CONST_INT:
  3471.     case CONST:
  3472.     case SYMBOL_REF:
  3473.     case LABEL_REF:
  3474.     case CONST_DOUBLE:
  3475.       return x;
  3476.  
  3477.     case SIGN_EXTRACT:
  3478.     case ZERO_EXTRACT:
  3479.       /* Note that in some cases those types of expressions are altered
  3480.      by optimize_bit_field, and do not survive to get here.  */
  3481.     case SUBREG:
  3482.       tem = x;
  3483.       while (GET_CODE (tem) == SUBREG || GET_CODE (tem) == SIGN_EXTRACT
  3484.          || GET_CODE (tem) == ZERO_EXTRACT)
  3485.     tem = XEXP (tem, 0);
  3486.       if (tem == var)
  3487.     {
  3488.       x = fixup_stack_1 (x, insn);
  3489.       tem = gen_reg_rtx (GET_MODE (x));
  3490.       if (GET_CODE (x) == SUBREG)
  3491.         x = fixup_memory_subreg (x, insn);
  3492.       emit_insn_before (gen_move_insn (tem, x), insn);
  3493.       return tem;
  3494.     }
  3495.       break;
  3496.  
  3497.     case SET:
  3498.       /* First do special simplification of bit-field references.  */
  3499.       if (GET_CODE (SET_DEST (x)) == SIGN_EXTRACT
  3500.       || GET_CODE (SET_DEST (x)) == ZERO_EXTRACT)
  3501.     optimize_bit_field (x, insn, 0);
  3502.       if (GET_CODE (SET_SRC (x)) == SIGN_EXTRACT
  3503.       || GET_CODE (SET_SRC (x)) == ZERO_EXTRACT)
  3504.     optimize_bit_field (x, insn, 0);
  3505.  
  3506.       {
  3507.     rtx dest = SET_DEST (x);
  3508.     rtx src = SET_SRC (x);
  3509.     rtx outerdest = dest;
  3510.     rtx outersrc = src;
  3511.  
  3512.     while (GET_CODE (dest) == SUBREG || GET_CODE (dest) == STRICT_LOW_PART
  3513.            || GET_CODE (dest) == SIGN_EXTRACT
  3514.            || GET_CODE (dest) == ZERO_EXTRACT)
  3515.       dest = XEXP (dest, 0);
  3516.     while (GET_CODE (src) == SUBREG
  3517.            || GET_CODE (src) == SIGN_EXTRACT
  3518.            || GET_CODE (src) == ZERO_EXTRACT)
  3519.       src = XEXP (src, 0);
  3520.  
  3521.     /* If VAR does not appear at the top level of the SET
  3522.        just scan the lower levels of the tree.  */
  3523.  
  3524.         if (src != var && dest != var)
  3525.       break;
  3526.  
  3527.     /* Clean up (SUBREG:SI (MEM:mode ...) 0)
  3528.        that may appear inside a SIGN_EXTRACT or ZERO_EXTRACT.
  3529.        This was legitimate when the MEM was a REG.  */
  3530.  
  3531.     if ((GET_CODE (outerdest) == SIGN_EXTRACT
  3532.          || GET_CODE (outerdest) == ZERO_EXTRACT)
  3533.         && GET_CODE (XEXP (outerdest, 0)) == SUBREG
  3534.         && SUBREG_REG (XEXP (outerdest, 0)) == var)
  3535.       XEXP (outerdest, 0) = fixup_memory_subreg (XEXP (outerdest, 0), insn);
  3536.  
  3537.     if ((GET_CODE (outersrc) == SIGN_EXTRACT
  3538.          || GET_CODE (outersrc) == ZERO_EXTRACT)
  3539.         && GET_CODE (XEXP (outersrc, 0)) == SUBREG
  3540.         && SUBREG_REG (XEXP (outersrc, 0)) == var)
  3541.       XEXP (outersrc, 0) = fixup_memory_subreg (XEXP (outersrc, 0), insn);
  3542.  
  3543.     /* Make sure that the machine's SIGN_EXTRACT and ZERO_EXTRACT insns
  3544.        accept a memory operand.  */
  3545. #ifdef HAVE_extzv
  3546.     if (GET_CODE (outersrc) == ZERO_EXTRACT
  3547.         && ! ((*insn_operand_predicate[(int) CODE_FOR_extzv][0])
  3548.           (XEXP (outersrc, 0), VOIDmode)))
  3549.       XEXP (outersrc, 0) = src
  3550.         = fixup_var_refs_1 (var, XEXP (outersrc, 0), insn);
  3551. #endif
  3552. #ifdef HAVE_extv
  3553.     if (GET_CODE (outersrc) == SIGN_EXTRACT
  3554.         && ! ((*insn_operand_predicate[(int) CODE_FOR_extv][0])
  3555.           (XEXP (outersrc, 0), VOIDmode)))
  3556.       XEXP (outersrc, 0) = src
  3557.         = fixup_var_refs_1 (var, XEXP (outersrc, 0), insn);
  3558. #endif
  3559. #ifdef HAVE_insv
  3560.     if (GET_CODE (outerdest) == ZERO_EXTRACT
  3561.         && ! ((*insn_operand_predicate[(int) CODE_FOR_insv][0])
  3562.           (XEXP (outerdest, 0), VOIDmode)))
  3563.       {
  3564.         rtx tem = gen_reg_rtx (GET_MODE (XEXP (outerdest, 0)));
  3565.  
  3566.         emit_insn_before (gen_move_insn (tem, XEXP (outerdest, 0)), insn);
  3567.         emit_insn_after (gen_move_insn (XEXP (outerdest, 0), tem), insn);
  3568.         dest = XEXP (outerdest, 0) = tem;
  3569.       }
  3570. #endif
  3571.  
  3572.     /* Make sure a MEM inside a SIGN_EXTRACT has QImode
  3573.        since that's what bit-field insns want.  */
  3574.  
  3575.     if ((GET_CODE (outerdest) == SIGN_EXTRACT
  3576.          || GET_CODE (outerdest) == ZERO_EXTRACT)
  3577.         && GET_CODE (XEXP (outerdest, 0)) == MEM
  3578.         && GET_MODE (XEXP (outerdest, 0)) != QImode)
  3579.       {
  3580.         XEXP (outerdest, 0) = copy_rtx (XEXP (outerdest, 0));
  3581.         PUT_MODE (XEXP (outerdest, 0), QImode);
  3582.         /* Adjust the address so the bit field starts within the byte
  3583.            addressed.  This helps certain optimization patterns.  */
  3584.         if (GET_CODE (XEXP (outerdest, 2)) == CONST_INT
  3585.         && offsettable_memref_p (XEXP (outerdest, 0)))
  3586.           {
  3587.         int count = INTVAL (XEXP (outerdest, 2));
  3588.         XEXP (outerdest, 0)
  3589.           = adj_offsettable_operand (XEXP (outerdest, 0),
  3590.                          count / GET_MODE_BITSIZE (QImode));
  3591.         XEXP (outerdest, 2)
  3592.           = gen_rtx (CONST_INT, VOIDmode,
  3593.                  count % GET_MODE_BITSIZE (QImode));
  3594.           }
  3595.       }
  3596.  
  3597.     if ((GET_CODE (outersrc) == SIGN_EXTRACT
  3598.          || GET_CODE (outersrc) == ZERO_EXTRACT)
  3599.         && GET_CODE (XEXP (outersrc, 0)) == MEM
  3600.         && GET_MODE (XEXP (outersrc, 0)) != QImode)
  3601.       {
  3602.         XEXP (outersrc, 0) = copy_rtx (XEXP (outersrc, 0));
  3603.         PUT_MODE (XEXP (outersrc, 0), QImode);
  3604.         /* Adjust the address so the bit field starts within the byte
  3605.            addressed.  This helps certain optimization patterns.  */
  3606.         if (GET_CODE (XEXP (outersrc, 2)) == CONST_INT
  3607.         && offsettable_memref_p (XEXP (outersrc, 0)))
  3608.           {
  3609.         int count = INTVAL (XEXP (outersrc, 2));
  3610.         XEXP (outersrc, 0)
  3611.           = adj_offsettable_operand (XEXP (outersrc, 0),
  3612.                          count / GET_MODE_BITSIZE (QImode));
  3613.         XEXP (outersrc, 2)
  3614.           = gen_rtx (CONST_INT, VOIDmode,
  3615.                  count % GET_MODE_BITSIZE (QImode));
  3616.           }
  3617.       }
  3618.  
  3619.     /* STRICT_LOW_PART is a no-op on memory references
  3620.        and it can cause combinations to be unrecognizable,
  3621.        so eliminate it.  */
  3622.  
  3623.     if (dest == var && GET_CODE (SET_DEST (x)) == STRICT_LOW_PART)
  3624.       SET_DEST (x) = XEXP (SET_DEST (x), 0);
  3625.  
  3626.     /* An insn to copy VAR into or out of a register
  3627.        must be left alone, to avoid an infinite loop here.
  3628.        But do fix up the address of VAR's stack slot if nec,
  3629.        and fix up SUBREGs containing VAR
  3630.        (since they are now memory subregs).  */
  3631.  
  3632.     if (GET_CODE (SET_SRC (x)) == REG || GET_CODE (SET_DEST (x)) == REG
  3633.         || (GET_CODE (SET_SRC (x)) == SUBREG
  3634.         && GET_CODE (SUBREG_REG (SET_SRC (x))) == REG)
  3635.         || (GET_CODE (SET_DEST (x)) == SUBREG
  3636.         && GET_CODE (SUBREG_REG (SET_DEST (x))) == REG))
  3637.       {
  3638.         if (src == var && GET_CODE (SET_SRC (x)) == SUBREG)
  3639.           SET_SRC (x) = fixup_memory_subreg (SET_SRC (x), insn);
  3640.         if (dest == var && GET_CODE (SET_DEST (x)) == SUBREG)
  3641.           SET_DEST (x) = fixup_memory_subreg (SET_DEST (x), insn);
  3642.         return fixup_stack_1 (x, insn);
  3643.       }
  3644.  
  3645.     /* Otherwise, storing into VAR must be handled specially
  3646.        by storing into a temporary and copying that into VAR
  3647.        with a new insn after this one.  */
  3648.  
  3649.     if (dest == var)
  3650.       {
  3651.         rtx temp;
  3652.         rtx fixeddest;
  3653.         tem = SET_DEST (x);
  3654.         /* STRICT_LOW_PART can be discarded, around a MEM.  */
  3655.         if (GET_CODE (tem) == STRICT_LOW_PART)
  3656.           tem = XEXP (tem, 0);
  3657.         /* Convert (SUBREG (MEM)) to a MEM in a changed mode.  */
  3658.         if (GET_CODE (tem) == SUBREG)
  3659.           tem = fixup_memory_subreg (tem, insn);
  3660.         fixeddest = fixup_stack_1 (tem, insn);
  3661.         temp = gen_reg_rtx (GET_MODE (tem));
  3662.         emit_insn_after (gen_move_insn (fixeddest, temp), insn);
  3663.         SET_DEST (x) = temp;
  3664.       }
  3665.       }
  3666.     }
  3667.  
  3668.   /* Nothing special about this RTX; fix its operands.  */
  3669.  
  3670.   fmt = GET_RTX_FORMAT (code);
  3671.   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  3672.     {
  3673.       if (fmt[i] == 'e')
  3674.     XEXP (x, i) = fixup_var_refs_1 (var, XEXP (x, i), insn);
  3675.       if (fmt[i] == 'E')
  3676.     {
  3677.       register int j;
  3678.       for (j = 0; j < XVECLEN (x, i); j++)
  3679.         XVECEXP (x, i, j)
  3680.           = fixup_var_refs_1 (var, XVECEXP (x, i, j), insn);
  3681.     }
  3682.     }
  3683.   return x;
  3684. }
  3685.  
  3686. /* Given X, an rtx of the form (SUBREG:m1 (MEM:m2 addr)),
  3687.    return an rtx (MEM:m1 newaddr) which is equivalent.
  3688.    If any insns must be emitted to compute NEWADDR, put them before INSN.  */
  3689.  
  3690. static rtx
  3691. fixup_memory_subreg (x, insn)
  3692.      rtx x;
  3693.      rtx insn;
  3694. {
  3695.   int offset = SUBREG_WORD (x) * UNITS_PER_WORD;
  3696.   rtx addr = XEXP (SUBREG_REG (x), 0);
  3697.   enum machine_mode mode = GET_MODE (x);
  3698.   rtx saved, result;
  3699.  
  3700. #ifdef BYTES_BIG_ENDIAN
  3701.   offset += (MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
  3702.          - MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode)));
  3703. #endif
  3704.   addr = plus_constant (addr, offset);
  3705.   if (memory_address_p (mode, addr))
  3706.     return change_address (SUBREG_REG (x), mode, addr);
  3707.   saved = start_sequence ();
  3708.   result = change_address (SUBREG_REG (x), mode, addr);
  3709.   emit_insn_before (gen_sequence (), insn);
  3710.   end_sequence (saved);
  3711.   return result;
  3712. }
  3713.  
  3714. /* Do fixup_memory_subreg on all (SUBREG (MEM ...) ...) contained in X.
  3715.    Replace subexpressions of X in place.
  3716.    If X itself is a (SUBREG (MEM ...) ...), return the replacement expression.
  3717.    Otherwise return X, with its contents possibly altered.
  3718.  
  3719.    If any insns must be emitted to compute NEWADDR, put them before INSN.  */
  3720.  
  3721. static rtx
  3722. walk_fixup_memory_subreg (x, insn)
  3723.      register rtx x;
  3724.      rtx insn;
  3725. {
  3726.   register enum rtx_code code;
  3727.   register char *fmt;
  3728.   register int i;
  3729.  
  3730.   if (x == 0)
  3731.     return 0;
  3732.  
  3733.   code = GET_CODE (x);
  3734.  
  3735.   if (code == SUBREG && GET_CODE (SUBREG_REG (x)) == MEM)
  3736.     return fixup_memory_subreg (x, insn);
  3737.  
  3738.   /* Nothing special about this RTX; fix its operands.  */
  3739.  
  3740.   fmt = GET_RTX_FORMAT (code);
  3741.   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  3742.     {
  3743.       if (fmt[i] == 'e')
  3744.     XEXP (x, i) = walk_fixup_memory_subreg (XEXP (x, i), insn);
  3745.       if (fmt[i] == 'E')
  3746.     {
  3747.       register int j;
  3748.       for (j = 0; j < XVECLEN (x, i); j++)
  3749.         XVECEXP (x, i, j)
  3750.           = walk_fixup_memory_subreg (XVECEXP (x, i, j), insn);
  3751.     }
  3752.     }
  3753.   return x;
  3754. }
  3755.  
  3756. #if 0
  3757. /* Fix up any references to stack slots that are invalid memory addresses
  3758.    because they exceed the maximum range of a displacement.  */
  3759.  
  3760. void
  3761. fixup_stack_slots ()
  3762. {
  3763.   register rtx insn;
  3764.  
  3765.   /* Did we generate a stack slot that is out of range
  3766.      or otherwise has an invalid address?  */
  3767.   if (invalid_stack_slot)
  3768.     {
  3769.       /* Yes.  Must scan all insns for stack-refs that exceed the limit.  */
  3770.       for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
  3771.     if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN
  3772.         || GET_CODE (insn) == JUMP_INSN)
  3773.       fixup_stack_1 (PATTERN (insn), insn);
  3774.     }
  3775. }
  3776. #endif
  3777.  
  3778. /* For each memory ref within X, if it refers to a stack slot
  3779.    with an out of range displacement, put the address in a temp register
  3780.    (emitting new insns before INSN to load these registers)
  3781.    and alter the memory ref to use that register.
  3782.    Replace each such MEM rtx with a copy, to avoid clobberage.  */
  3783.  
  3784. static rtx
  3785. fixup_stack_1 (x, insn)
  3786.      rtx x;
  3787.      rtx insn;
  3788. {
  3789.   register int i;
  3790.   register RTX_CODE code = GET_CODE (x);
  3791.   register char *fmt;
  3792.  
  3793.   if (code == MEM)
  3794.     {
  3795.       register rtx ad = XEXP (x, 0);
  3796.       /* If we have address of a stack slot but it's not valid
  3797.      (displacement is too large), compute the sum in a register.  */
  3798.       if (GET_CODE (ad) == PLUS
  3799.       && XEXP (ad, 0) == frame_pointer_rtx
  3800.       && GET_CODE (XEXP (ad, 1)) == CONST_INT)
  3801.     {
  3802.       rtx temp;
  3803.       if (memory_address_p (GET_MODE (x), ad))
  3804.         return x;
  3805.       temp = gen_reg_rtx (GET_MODE (ad));
  3806.       emit_insn_before (gen_move_insn (temp, ad), insn);
  3807.       return change_address (x, VOIDmode, temp);
  3808.     }
  3809.       return x;
  3810.     }
  3811.  
  3812.   fmt = GET_RTX_FORMAT (code);
  3813.   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  3814.     {
  3815.       if (fmt[i] == 'e')
  3816.     XEXP (x, i) = fixup_stack_1 (XEXP (x, i), insn);
  3817.       if (fmt[i] == 'E')
  3818.     {
  3819.       register int j;
  3820.       for (j = 0; j < XVECLEN (x, i); j++)
  3821.         XVECEXP (x, i, j) = fixup_stack_1 (XVECEXP (x, i, j), insn);
  3822.     }
  3823.     }
  3824.   return x;
  3825. }
  3826.  
  3827. /* Optimization: a bit-field instruction whose field
  3828.    happens to be a byte or halfword in memory
  3829.    can be changed to a move instruction.
  3830.  
  3831.    We call here when INSN is an insn to examine or store into a bit-field.
  3832.    BODY is the SET-rtx to be altered.
  3833.  
  3834.    EQUIV_MEM is the table `reg_equiv_mem' if that is available; else 0.
  3835.    (Currently this is called only from stmt.c, and EQUIV_MEM is always 0.)  */
  3836.  
  3837. static void
  3838. optimize_bit_field (body, insn, equiv_mem)
  3839.      rtx body;
  3840.      rtx insn;
  3841.      rtx *equiv_mem;
  3842. {
  3843.   register rtx bitfield;
  3844.   int destflag;
  3845.  
  3846.   if (GET_CODE (SET_DEST (body)) == SIGN_EXTRACT
  3847.       || GET_CODE (SET_DEST (body)) == ZERO_EXTRACT)
  3848.     bitfield = SET_DEST (body), destflag = 1;
  3849.   else
  3850.     bitfield = SET_SRC (body), destflag = 0;
  3851.  
  3852.   /* First check that the field being stored has constant size and position
  3853.      and is in fact a byte or halfword suitably aligned.  */
  3854.  
  3855.   if (GET_CODE (XEXP (bitfield, 1)) == CONST_INT
  3856.       && GET_CODE (XEXP (bitfield, 2)) == CONST_INT
  3857.       && (INTVAL (XEXP (bitfield, 1)) == GET_MODE_BITSIZE (QImode)
  3858.       || INTVAL (XEXP (bitfield, 1)) == GET_MODE_BITSIZE (HImode))
  3859.       && INTVAL (XEXP (bitfield, 2)) % INTVAL (XEXP (bitfield, 1)) == 0)
  3860.     {
  3861.       register rtx memref = 0;
  3862.  
  3863.       /* Now check that the containing word is memory, not a register,
  3864.      and that it is safe to change the machine mode and to
  3865.      add something to the address.  */
  3866.  
  3867.       if (GET_CODE (XEXP (bitfield, 0)) == MEM)
  3868.     memref = XEXP (bitfield, 0);
  3869.       else if (GET_CODE (XEXP (bitfield, 0)) == REG
  3870.            && equiv_mem != 0)
  3871.     memref = equiv_mem[REGNO (XEXP (bitfield, 0))];
  3872.       else if (GET_CODE (XEXP (bitfield, 0)) == SUBREG
  3873.            && GET_CODE (SUBREG_REG (XEXP (bitfield, 0))) == MEM)
  3874.     memref = SUBREG_REG (XEXP (bitfield, 0));
  3875.       else if (GET_CODE (XEXP (bitfield, 0)) == SUBREG
  3876.            && equiv_mem != 0
  3877.            && GET_CODE (SUBREG_REG (XEXP (bitfield, 0))) == REG)
  3878.     memref = equiv_mem[REGNO (SUBREG_REG (XEXP (bitfield, 0)))];
  3879.  
  3880.       if (memref
  3881.       && ! mode_dependent_address_p (XEXP (memref, 0))
  3882.       && offsettable_address_p (0, GET_MODE (bitfield), XEXP (memref, 0)))
  3883.     {
  3884.       /* Now adjust the address, first for any subreg'ing
  3885.          that we are now getting rid of,
  3886.          and then for which byte of the word is wanted.  */
  3887.  
  3888.       register int offset
  3889.         = INTVAL (XEXP (bitfield, 2)) / GET_MODE_BITSIZE (QImode);
  3890.       if (GET_CODE (XEXP (bitfield, 0)) == SUBREG)
  3891.         {
  3892.           offset += SUBREG_WORD (XEXP (bitfield, 0)) * UNITS_PER_WORD;
  3893. #ifdef BYTES_BIG_ENDIAN
  3894.           offset -= (MIN (UNITS_PER_WORD,
  3895.                   GET_MODE_SIZE (GET_MODE (XEXP (bitfield, 0))))
  3896.              - MIN (UNITS_PER_WORD,
  3897.                 GET_MODE_SIZE (GET_MODE (memref))));
  3898. #endif
  3899.         }
  3900.  
  3901.       memref = gen_rtx (MEM,
  3902.                 (INTVAL (XEXP (bitfield, 1)) == GET_MODE_BITSIZE (QImode)
  3903.                  ? QImode : HImode),
  3904.                 XEXP (memref, 0));
  3905.  
  3906.       /* Store this memory reference where
  3907.          we found the bit field reference.  */
  3908.  
  3909.       if (destflag)
  3910.         {
  3911.           SET_DEST (body)
  3912.         = adj_offsettable_operand (memref, offset);
  3913.           if (! CONSTANT_ADDRESS_P (SET_SRC (body)))
  3914.         {
  3915.           rtx src = SET_SRC (body);
  3916.           while (GET_CODE (src) == SUBREG
  3917.              && SUBREG_WORD (src) == 0)
  3918.             src = SUBREG_REG (src);
  3919.           if (GET_MODE (src) != GET_MODE (memref))
  3920.             src = gen_lowpart (GET_MODE (memref), SET_SRC (body));
  3921.           SET_SRC (body) = src;
  3922.         }
  3923.           else if (GET_MODE (SET_SRC (body)) != VOIDmode
  3924.                && GET_MODE (SET_SRC (body)) != GET_MODE (memref))
  3925.         /* This shouldn't happen because anything that didn't have
  3926.            one of these modes should have got converted explicitly
  3927.            and then referenced through a subreg.
  3928.            This is so because the original bit-field was
  3929.            handled by agg_mode and so its tree structure had
  3930.            the same mode that memref now has.  */
  3931.         abort ();
  3932.         }
  3933.       else
  3934.         {
  3935.           rtx dest = SET_DEST (body);
  3936.  
  3937.           while (GET_CODE (dest) == SUBREG
  3938.              && SUBREG_WORD (dest) == 0)
  3939.         dest = SUBREG_REG (dest);
  3940.           SET_DEST (body) = dest;
  3941.  
  3942.           memref = adj_offsettable_operand (memref, offset);
  3943.           if (GET_MODE (dest) == GET_MODE (memref))
  3944.         SET_SRC (body) = memref;
  3945.           else
  3946.         {
  3947.           /* Convert the mem ref to the destination mode.  */
  3948.           rtx last = get_last_insn ();
  3949.           rtx newreg = gen_reg_rtx (GET_MODE (dest));
  3950.           convert_move (newreg, memref,
  3951.                 GET_CODE (SET_SRC (body)) == ZERO_EXTRACT);
  3952.           /* Put the conversion before the insn being fixed.  */
  3953.           reorder_insns (NEXT_INSN (last), get_last_insn (),
  3954.                  PREV_INSN (insn));
  3955.           SET_SRC (body) = newreg;
  3956.         }
  3957.         }
  3958.  
  3959.       /* Cause the insn to be re-recognized.  */
  3960.  
  3961.       INSN_CODE (insn) = -1;
  3962.     }
  3963.     }
  3964. }
  3965.  
  3966. /* 1 + last pseudo register number used for loading a copy
  3967.    of a parameter of this function.  */
  3968.  
  3969. static int max_parm_reg;
  3970.  
  3971. /* Vector indexed by REGNO, containing location on stack in which
  3972.    to put the parm which is nominally in pseudo register REGNO,
  3973.    if we discover that that parm must go in the stack.  */
  3974. static rtx *parm_reg_stack_loc;
  3975.  
  3976. int
  3977. max_parm_reg_num ()
  3978. {
  3979.   return max_parm_reg;
  3980. }
  3981.  
  3982. /* Return the first insn following those generated by `assign_parms'.  */
  3983.  
  3984. rtx
  3985. get_first_nonparm_insn ()
  3986. {
  3987.   if (last_parm_insn)
  3988.     return NEXT_INSN (last_parm_insn);
  3989.   return get_insns ();
  3990. }
  3991.  
  3992. /* Get the stack home of a REG rtx that is one of this function's parameters.
  3993.    This is called rather than assign a new stack slot as a local.
  3994.    Return 0 if there is no existing stack home suitable for such use.  */
  3995.  
  3996. static rtx
  3997. parm_stack_loc (reg)
  3998.      rtx reg;
  3999. {
  4000.   if (REGNO (reg) < max_parm_reg)
  4001.     return parm_reg_stack_loc[REGNO (reg)];
  4002.   return 0;
  4003. }
  4004.  
  4005. /* Return 1 if EXP returns an aggregate value, for which an address
  4006.    must be passed to the function or returned by the function.  */
  4007.  
  4008. int
  4009. aggregate_value_p (exp)
  4010.      tree exp;
  4011. {
  4012.   if (TYPE_MODE (TREE_TYPE (exp)) == BLKmode)
  4013.     return 1;
  4014.   if (RETURN_IN_MEMORY (TREE_TYPE (exp)))
  4015.     return 1;
  4016.   if (flag_pcc_struct_return
  4017.       && (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE
  4018.       || TREE_CODE (TREE_TYPE (exp)) == UNION_TYPE))
  4019.     return 1;
  4020.   return 0;
  4021. }
  4022.  
  4023. /* Convert a mem ref into one with a valid memory address.
  4024.    Pass through anything else unchanged.  */
  4025.  
  4026. rtx
  4027. validize_mem (ref)
  4028.      rtx ref;
  4029. {
  4030.   if (GET_CODE (ref) != MEM)
  4031.     return ref;
  4032.   if (memory_address_p (GET_MODE (ref), XEXP (ref, 0)))
  4033.     return ref;
  4034.   return change_address (ref, VOIDmode,
  4035.              memory_address (GET_MODE (ref), XEXP (ref, 0)));
  4036. }
  4037.  
  4038. /* Assign RTL expressions to the function's parameters.
  4039.    This may involve copying them into registers and using
  4040.    those registers as the RTL for them.  */
  4041.  
  4042. static void
  4043. assign_parms (fndecl)
  4044.      tree fndecl;
  4045. {
  4046.   register tree parm;
  4047.   register rtx entry_parm;
  4048.   register rtx stack_parm;
  4049.   register CUMULATIVE_ARGS args_so_far;
  4050.   enum machine_mode passed_mode, nominal_mode;
  4051.   /* Total space needed so far for args on the stack,
  4052.      given as a constant and a tree-expression.  */
  4053.   struct args_size stack_args_size;
  4054.   int first_parm_offset = FIRST_PARM_OFFSET (fndecl);
  4055.   tree fntype = TREE_TYPE (fndecl);
  4056.   /* This is used for the arg pointer when referring to stack args.  */
  4057.   rtx internal_arg_pointer;
  4058.  
  4059.   int nparmregs
  4060.     = list_length (DECL_ARGUMENTS (fndecl)) + FIRST_PSEUDO_REGISTER;
  4061.  
  4062.   /* Nonzero if function takes extra anonymous args.
  4063.      This means the last named arg must be on the stack
  4064.      right before the anonymous ones.
  4065.      Also nonzero if the first arg is named `__builtin_va_alist',
  4066.      which is used on some machines for old-fashioned non-ANSI varargs.h;
  4067.      this too should be stuck onto the stack as if it had arrived there.  */
  4068.   int vararg
  4069.     = ((DECL_ARGUMENTS (fndecl) != 0
  4070.     && DECL_NAME (DECL_ARGUMENTS (fndecl))
  4071.     && (! strcmp (IDENTIFIER_POINTER (DECL_NAME (DECL_ARGUMENTS (fndecl))),
  4072.               "__builtin_va_alist")))
  4073.        ||
  4074.        (TYPE_ARG_TYPES (fntype) != 0
  4075.     && (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype)))
  4076.         != void_type_node)));
  4077.   int arg_pointer_copied = 0;
  4078.  
  4079. #if ARG_POINTER_REGNUM == FRAME_POINTER_REGNUM
  4080.   internal_arg_pointer = arg_pointer_rtx;
  4081. #else
  4082.   /* If the arg pointer reg is not a fixed reg,
  4083.      make a copy of it, and address parms via the copy.  */
  4084.   if (fixed_regs[ARG_POINTER_REGNUM])
  4085.     internal_arg_pointer = arg_pointer_rtx;
  4086.   else
  4087.     {
  4088.       internal_arg_pointer = copy_to_reg (arg_pointer_rtx);
  4089.       arg_pointer_copied = 1;
  4090.     }
  4091. #endif
  4092.  
  4093.   stack_args_size.constant = 0;
  4094.   stack_args_size.var = 0;
  4095.  
  4096.   /* If struct value address comes on the stack, count it in size of args.  */
  4097.   if (aggregate_value_p (DECL_RESULT (fndecl))
  4098.       && GET_CODE (struct_value_incoming_rtx) == MEM)
  4099.     stack_args_size.constant += GET_MODE_SIZE (Pmode);
  4100.  
  4101.   parm_reg_stack_loc = (rtx *) oballoc (nparmregs * sizeof (rtx));
  4102.   bzero (parm_reg_stack_loc, nparmregs * sizeof (rtx));
  4103.  
  4104.   INIT_CUMULATIVE_ARGS (args_so_far, fntype);
  4105.  
  4106.   for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
  4107.     {
  4108.       int aggregate
  4109.     = (TREE_CODE (TREE_TYPE (parm)) == ARRAY_TYPE
  4110.        || TREE_CODE (TREE_TYPE (parm)) == RECORD_TYPE
  4111.        || TREE_CODE (TREE_TYPE (parm)) == UNION_TYPE);
  4112.       struct args_size stack_offset;
  4113.       rtx stack_offset_rtx;
  4114.       enum direction where_pad;
  4115.  
  4116.       DECL_OFFSET (parm) = -1;
  4117.  
  4118.       if (TREE_TYPE (parm) == error_mark_node
  4119.       /* This can happen after weird syntax errors
  4120.          or if an enum type is defined among the parms.  */
  4121.       || TREE_CODE (parm) != PARM_DECL
  4122.       || DECL_ARG_TYPE (parm) == NULL)
  4123.     {
  4124.       DECL_RTL (parm) = gen_rtx (MEM, BLKmode, const0_rtx);
  4125.       TREE_USED (parm) = 1;
  4126.       continue;
  4127.     }
  4128.  
  4129.       /* Find mode of arg as it is passed, and mode of arg
  4130.      as it should be during execution of this function.  */
  4131.       passed_mode = TYPE_MODE (DECL_ARG_TYPE (parm));
  4132.       nominal_mode = TYPE_MODE (TREE_TYPE (parm));
  4133.  
  4134.       /* Get this parm's offset as an rtx.  */
  4135. #if defined( DSP56000 ) || defined( DSP96000 )
  4136.       /* this, and it's later #if ... are needed to get multi-word
  4137.      arguments to work correctly on an upward growth stack. We
  4138.      kludge here: we don't want to bump the cuumulative stack offset if
  4139.      the arg is (in)coming in a reg. I did this to minimize diff lines
  4140.      and to get it to work for the 56/96 with register args - not in
  4141.      a way to fix gcc in general. */
  4142.       if ( ! FUNCTION_INCOMING_ARG ( args_so_far, passed_mode, 
  4143.                     DECL_ARG_TYPE ( parm ), 
  4144.                     ! ( TREE_CHAIN ( parm ) == 0 && vararg )))
  4145.       {
  4146.       ADD_PARM_SIZE ( stack_args_size, 
  4147.              size_in_bytes ( DECL_ARG_TYPE ( parm )));
  4148.       }
  4149. #endif
  4150. #ifdef STACK_GROWS_DOWNWARD
  4151.       stack_offset = stack_args_size;
  4152. #else
  4153.       stack_offset = stack_args_size;
  4154.       stack_offset.constant = - stack_offset.constant;
  4155. #endif
  4156.       stack_offset.constant += first_parm_offset;
  4157.  
  4158.       /* If this argument needs more than the usual parm alignment, do
  4159.      extrinsic padding to reach that alignment.  */
  4160.  
  4161. #ifdef MAX_PARM_BOUNDARY
  4162.       /* If MAX_PARM_BOUNDARY is not defined, it means that the usual
  4163.      alignment requirements are relaxed for parms, and that no parm
  4164.      needs more alignment than PARM_BOUNDARY, regardless of data type.  */
  4165.  
  4166.       if (PARM_BOUNDARY < TYPE_ALIGN (DECL_ARG_TYPE (parm)))
  4167.     {
  4168.       int boundary = PARM_BOUNDARY;
  4169.  
  4170.       /* Determine the boundary to pad up to.  */
  4171.       if (TYPE_ALIGN (DECL_ARG_TYPE (parm)) > boundary)
  4172.         boundary = TYPE_ALIGN (DECL_ARG_TYPE (parm));
  4173.       if (boundary > MAX_PARM_BOUNDARY)
  4174.         boundary = MAX_PARM_BOUNDARY;
  4175.  
  4176.       /* If the previous args don't reach such a boundary,
  4177.          advance to the next one.  */
  4178.       boundary /= BITS_PER_UNIT;
  4179.       stack_offset.constant += boundary - 1;
  4180.       stack_offset.constant &= ~(boundary - 1);
  4181.       stack_args_size.constant += boundary - 1;
  4182.       stack_args_size.constant &= ~(boundary - 1);
  4183.  
  4184.       if (stack_offset.var != 0)
  4185.         abort ();        /* This case not implemented yet */
  4186.     }
  4187. #endif /* MAX_PARM_BOUNDARY */
  4188.  
  4189.       /* Find out if the parm needs intrinsic padding (up to PARM_BOUNDARY),
  4190.      and whether above or below.  */
  4191.  
  4192.       where_pad
  4193.     = FUNCTION_ARG_PADDING (passed_mode,
  4194.                 expand_expr (size_in_bytes (DECL_ARG_TYPE (parm)),
  4195.                          0, VOIDmode, 0));
  4196.  
  4197.       /* If arg should be padded below, adjust the stack address upward.
  4198.      This padding is considered part of the space occupied by the
  4199.      argument.  It pads only up to PARM_BOUNDARY, and it does not
  4200.      depend on the previous arguments, since they are assumed to
  4201.      occupy a multiple of PARM_BOUNDARY.  */
  4202.  
  4203.       if (where_pad == downward)
  4204.     {
  4205.       if (passed_mode != BLKmode)
  4206.         {
  4207.           if (GET_MODE_BITSIZE (passed_mode) % PARM_BOUNDARY)
  4208.         stack_offset.constant
  4209.           += (((GET_MODE_BITSIZE (passed_mode) + PARM_BOUNDARY - 1)
  4210.                / PARM_BOUNDARY * PARM_BOUNDARY / BITS_PER_UNIT)
  4211.               - GET_MODE_SIZE (passed_mode));
  4212.         }
  4213.       else
  4214.         {
  4215.           tree sizetree = size_in_bytes (DECL_ARG_TYPE (parm));
  4216.           /* Round the size up to multiple of PARM_BOUNDARY bits.  */
  4217.           tree s1 = convert_units (sizetree, BITS_PER_UNIT, PARM_BOUNDARY);
  4218.           tree s2 = convert_units (s1, PARM_BOUNDARY, BITS_PER_UNIT);
  4219.           /* Add it in.  */
  4220.           ADD_PARM_SIZE (stack_offset, s2);
  4221.           SUB_PARM_SIZE (stack_offset, sizetree);
  4222.         }
  4223.     }
  4224.  
  4225.       stack_offset_rtx = ARGS_SIZE_RTX (stack_offset);
  4226.  
  4227.       /* Determine parm's home in the stack,
  4228.      in case it arrives in the stack or we should pretend it did.  */
  4229.       stack_parm
  4230.     = gen_rtx (MEM, passed_mode,
  4231.            memory_address (passed_mode,
  4232.                    gen_rtx (PLUS, Pmode,
  4233.                         internal_arg_pointer,
  4234.                         stack_offset_rtx)));
  4235.  
  4236.       /* If this is a memory ref that contains aggregate components,
  4237.      mark it as such for cse and loop optimize.  */
  4238.       MEM_IN_STRUCT_P (stack_parm) = aggregate;
  4239.  
  4240.       /* Let machine desc say which reg (if any) the parm arrives in.
  4241.      0 means it arrives on the stack.  */
  4242.       entry_parm = 0;
  4243.       /* Variable-size args, and args following such, are never in regs.  */
  4244.       if (TREE_CODE (TYPE_SIZE (TREE_TYPE (parm))) == INTEGER_CST
  4245.       || stack_offset.var != 0)
  4246.     {
  4247.       /* Set LAST_NAMED if this is last named arg before some
  4248.          anonymous args.  We treat it as if it were anonymous too.  */
  4249.       int last_named = (TREE_CHAIN (parm) == 0 && vararg);
  4250. #ifdef FUNCTION_INCOMING_ARG
  4251.       entry_parm
  4252.         = FUNCTION_INCOMING_ARG (args_so_far, passed_mode,
  4253.                      DECL_ARG_TYPE (parm), ! last_named);
  4254. #else
  4255.       entry_parm
  4256.         = FUNCTION_ARG (args_so_far, passed_mode, DECL_ARG_TYPE (parm),
  4257.                 ! last_named);
  4258. #endif
  4259.     }
  4260.  
  4261.       /* If this parm was passed part in regs and part in memory,
  4262.      pretend it arrived entirely in memory
  4263.      by pushing the register-part onto the stack.
  4264.  
  4265.      In the special case of a DImode or DFmode that is split,
  4266.      we could put it together in a pseudoreg directly,
  4267.      but for now that's not worth bothering with.  */
  4268.  
  4269.       if (entry_parm)
  4270.     {
  4271.       int nregs = 0;
  4272.       int i;
  4273. #ifdef FUNCTION_ARG_PARTIAL_NREGS
  4274.       nregs = FUNCTION_ARG_PARTIAL_NREGS (args_so_far, passed_mode,
  4275.                           DECL_ARG_TYPE (parm), 1);
  4276. #endif
  4277.  
  4278. #if 0 /* Replaced by new calling convention
  4279.      which actually passes these args on the stack.  */
  4280.       /* If this is the last named arg and anonymous args follow,
  4281.          likewise pretend this arg arrived on the stack
  4282.          so varargs can find the anonymous args following it.  */
  4283.       if (TREE_CHAIN (parm) == 0 && vararg)
  4284.         {
  4285.           if (GET_MODE (entry_parm) == BLKmode)
  4286.         nregs = GET_MODE_SIZE (GET_MODE (entry_parm)) / UNITS_PER_WORD;
  4287.           else
  4288.         nregs = (int_size_in_bytes (DECL_ARG_TYPE (parm))
  4289.              / UNITS_PER_WORD);
  4290.         }
  4291. #endif /* 0 */
  4292.  
  4293.       if (nregs > 0)
  4294.         {
  4295.           current_function_pretend_args_size
  4296.         = (((nregs * UNITS_PER_WORD) + (PARM_BOUNDARY / BITS_PER_UNIT) - 1)
  4297.            / (PARM_BOUNDARY / BITS_PER_UNIT)
  4298.            * (PARM_BOUNDARY / BITS_PER_UNIT));
  4299.  
  4300.           i = nregs;
  4301.           while (--i >= 0)
  4302.         emit_move_insn (gen_rtx (MEM, SImode,
  4303.                      plus_constant (XEXP (stack_parm, 0),
  4304.                             i * GET_MODE_SIZE (SImode))),
  4305.                 gen_rtx (REG, SImode, REGNO (entry_parm) + i));
  4306.           entry_parm = stack_parm;
  4307.         }
  4308.     }
  4309.  
  4310.       /* If we didn't decide this parm came in a register,
  4311.      by default it came on the stack.  */
  4312.       if (entry_parm == 0)
  4313.     entry_parm = stack_parm;
  4314.  
  4315.       /* For a stack parm, record in DECL_OFFSET the arglist offset
  4316.      of the parm at the time it is passed (before conversion).  */
  4317.       if (entry_parm == stack_parm)
  4318.     DECL_OFFSET (parm) = stack_offset.constant * BITS_PER_UNIT;
  4319.  
  4320.       /* If there is actually space on the stack for this parm,
  4321.      count it in stack_args_size; otherwise set stack_parm to 0
  4322.      to indicate there is no preallocated stack slot for the parm.  */
  4323.  
  4324.       if (entry_parm == stack_parm
  4325. #ifdef REG_PARM_STACK_SPACE
  4326.       /* On some machines, even if a parm value arrives in a register
  4327.          there is still an (uninitialized) stack slot allocated for it.  */
  4328.       || 1
  4329. #endif
  4330.       )
  4331.     {
  4332.       tree sizetree = size_in_bytes (DECL_ARG_TYPE (parm));
  4333.       if (where_pad != none)
  4334.         {
  4335.           /* Round the size up to multiple of PARM_BOUNDARY bits.  */
  4336.           tree s1 = convert_units (sizetree, BITS_PER_UNIT, PARM_BOUNDARY);
  4337.           sizetree = convert_units (s1, PARM_BOUNDARY, BITS_PER_UNIT);
  4338.         }
  4339.       /* Add it in.  */
  4340. #if ! defined( DSP56000 ) && ! defined( DSP96000 )
  4341.       /* this, and it's earlier #if ... are needed to get multi-word
  4342.      arguments to work correctly on an upward growth stack. */
  4343.       ADD_PARM_SIZE (stack_args_size, sizetree);
  4344. #endif
  4345.     }
  4346.       else
  4347.     /* No stack slot was pushed for this parm.  */
  4348.     stack_parm = 0;
  4349.  
  4350.       /* Now adjust STACK_PARM to the mode and precise location
  4351.      where this parameter should live during execution,
  4352.      if we discover that it must live in the stack during execution.
  4353.      To make debuggers happier on big-endian machines, we store
  4354.      the value in the last bytes of the space available.  */
  4355.  
  4356.       if (nominal_mode != BLKmode && nominal_mode != passed_mode
  4357.       && stack_parm != 0)
  4358.     {
  4359. #ifdef BYTES_BIG_ENDIAN
  4360.       if (GET_MODE_SIZE (nominal_mode) < UNITS_PER_WORD)
  4361.         {
  4362.           stack_offset.constant
  4363.         += GET_MODE_SIZE (passed_mode)
  4364.           - GET_MODE_SIZE (nominal_mode);
  4365.           stack_offset_rtx = ARGS_SIZE_RTX (stack_offset);
  4366.         }
  4367. #endif
  4368.  
  4369.       stack_parm
  4370.         = gen_rtx (MEM, nominal_mode,
  4371.                memory_address (nominal_mode,
  4372.                        gen_rtx (PLUS, Pmode,
  4373.                         arg_pointer_rtx,
  4374.                         stack_offset_rtx)));
  4375.  
  4376.       /* If this is a memory ref that contains aggregate components,
  4377.          mark it as such for cse and loop optimize.  */
  4378.       MEM_IN_STRUCT_P (stack_parm) = aggregate;
  4379.     }
  4380.  
  4381.       /* ENTRY_PARM is an RTX for the parameter as it arrives,
  4382.      in the mode in which it arrives.
  4383.      STACK_PARM is an RTX for a stack slot where the parameter can live
  4384.      during the function (in case we want to put it there).
  4385.      STACK_PARM is 0 if no stack slot was pushed for it.
  4386.  
  4387.      Now output code if necessary to convert ENTRY_PARM to
  4388.      the type in which this function declares it,
  4389.      and store that result in an appropriate place,
  4390.      which may be a pseudo reg, may be STACK_PARM,
  4391.      or may be a local stack slot if STACK_PARM is 0.
  4392.  
  4393.      Set DECL_RTL to that place.  */
  4394.  
  4395.       if (nominal_mode == BLKmode)
  4396.     {
  4397.       /* If a BLKmode arrives in registers, copy it to a stack slot.  */
  4398.       if (GET_CODE (entry_parm) == REG)
  4399.         {
  4400.           if (stack_parm == 0)
  4401.         stack_parm
  4402.           = assign_stack_local (GET_MODE (entry_parm),
  4403.                     int_size_in_bytes (TREE_TYPE (parm)));
  4404.  
  4405.           move_block_from_reg (REGNO (entry_parm), stack_parm,
  4406.                    ((int_size_in_bytes (TREE_TYPE (parm))
  4407.                      + UNITS_PER_WORD - 1)
  4408.                     / UNITS_PER_WORD));
  4409.         }
  4410.       DECL_RTL (parm) = stack_parm;
  4411.     }
  4412.       else if (! ((obey_regdecls && ! TREE_REGDECL (parm)
  4413.            && ! TREE_INLINE (fndecl))
  4414.           /* layout_decl may set this.  */
  4415.           || TREE_ADDRESSABLE (parm)
  4416.           || TREE_VOLATILE (parm)
  4417.           /* If -ffloat-store specified, don't put explicit
  4418.              float variables into registers.  */
  4419.           || (flag_float_store
  4420.               && TREE_CODE (TREE_TYPE (parm)) == REAL_TYPE)))
  4421.     {
  4422.       /* Store the parm in a pseudoregister during the function.  */
  4423.       register rtx parmreg = gen_reg_rtx (nominal_mode);
  4424.  
  4425.       REG_USERVAR_P (parmreg) = 1;
  4426.       DECL_RTL (parm) = parmreg;
  4427.  
  4428.       /* Copy the value into the register.  */
  4429.       if (GET_MODE (parmreg) != GET_MODE (entry_parm))
  4430.         convert_move (parmreg, validize_mem (entry_parm), 0);
  4431.       else
  4432.         emit_move_insn (parmreg, validize_mem (entry_parm));
  4433.  
  4434.       /* In any case, record the parm's desired stack location
  4435.          in case we later discover it must live in the stack.  */
  4436.       if (REGNO (parmreg) >= nparmregs)
  4437.         {
  4438.           rtx *new;
  4439.           nparmregs = REGNO (parmreg) + 5;
  4440.           new = (rtx *) oballoc (nparmregs * sizeof (rtx));
  4441.           bcopy (parm_reg_stack_loc, new, nparmregs * sizeof (rtx));
  4442.           parm_reg_stack_loc = new;
  4443.         }
  4444.       parm_reg_stack_loc[REGNO (parmreg)] = stack_parm;
  4445.  
  4446.       /* Mark the register as eliminable if we did no conversion
  4447.          and it was copied from memory at a fixed offset,
  4448.          and the arg pointer was not copied to a pseudo-reg.
  4449.          If the arg pointer is a pseudo reg, such memory-equivalences
  4450.          as we make here would screw up life analysis for it.  */
  4451.       if (nominal_mode == passed_mode
  4452.           && GET_CODE (entry_parm) == MEM
  4453.           && stack_offset.var == 0
  4454.           && ! arg_pointer_copied)
  4455.         REG_NOTES (get_last_insn ())
  4456.           = gen_rtx (EXPR_LIST, REG_EQUIV,
  4457.              entry_parm, REG_NOTES (get_last_insn ()));
  4458.  
  4459.       /* For pointer data type, suggest pointer register.  */
  4460.       if (TREE_CODE (TREE_TYPE (parm)) == POINTER_TYPE)
  4461.         mark_reg_pointer (parmreg);
  4462.     }
  4463.       else
  4464.     {
  4465.       /* Value must be stored in the stack slot STACK_PARM
  4466.          during function execution.  */
  4467.  
  4468.       if (passed_mode != nominal_mode)
  4469.         /* Conversion is required.  */
  4470.         entry_parm = convert_to_mode (nominal_mode, entry_parm, 0);
  4471.  
  4472.       if (entry_parm != stack_parm)
  4473.         {
  4474.           if (stack_parm == 0)
  4475.         stack_parm = assign_stack_local (GET_MODE (entry_parm),
  4476.                          GET_MODE_SIZE (GET_MODE (entry_parm)));
  4477.           emit_move_insn (validize_mem (stack_parm),
  4478.                   validize_mem (entry_parm));
  4479.         }
  4480.  
  4481.       DECL_RTL (parm) = stack_parm;
  4482.       frame_pointer_needed = 1;
  4483.     }
  4484.       
  4485.       if (TREE_VOLATILE (parm))
  4486.     MEM_VOLATILE_P (DECL_RTL (parm)) = 1;
  4487.       if (TREE_READONLY (parm))
  4488.     RTX_UNCHANGING_P (DECL_RTL (parm)) = 1;
  4489.  
  4490.       /* Update info on where next arg arrives in registers.  */
  4491.  
  4492.       FUNCTION_ARG_ADVANCE (args_so_far, passed_mode, DECL_ARG_TYPE (parm), 1);
  4493.     }
  4494.  
  4495.   max_parm_reg = max_reg_num ();
  4496.   last_parm_insn = get_last_insn ();
  4497.  
  4498.   current_function_args_size = stack_args_size.constant;
  4499. }
  4500.  
  4501. /* Allocation of space for returned structure values.
  4502.    During the rtl generation pass, `get_structure_value_addr'
  4503.    is called from time to time to request the address of a block in our
  4504.    stack frame in which called functions will store the structures
  4505.    they are returning.  The same space is used for all of these blocks.  
  4506.  
  4507.    We allocate these blocks like stack locals.  We keep reusing
  4508.    the same block until a bigger one is needed.  */
  4509.  
  4510. /* Length in bytes of largest structure value returned by
  4511.    any function called so far in this function.  */
  4512. static int max_structure_value_size;
  4513.  
  4514. /* An rtx for the addr we are currently using for structure values.
  4515.    This is typically (PLUS (REG:SI stackptr) (CONST_INT...)).  */
  4516. static rtx structure_value;
  4517.  
  4518. rtx
  4519. get_structure_value_addr (sizex)
  4520.      rtx sizex;
  4521. {
  4522.   register int size;
  4523. #if defined( DSP56000 )
  4524.   if ( CONST_DOUBLE == GET_CODE ( sizex ))
  4525.   {
  4526.       sizex = gen_rtx ( CONST_INT, VOIDmode, CONST_DOUBLE_LOW ( sizex ));
  4527.   }
  4528. #endif  
  4529.   if (GET_CODE (sizex) != CONST_INT)
  4530.     abort ();
  4531.   size = INTVAL (sizex);
  4532.  
  4533.   /* Round up to a multiple of the main allocation unit.  */
  4534.   size = (((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
  4535.        / (BIGGEST_ALIGNMENT / BITS_PER_UNIT))
  4536.       * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
  4537.  
  4538.   /* If this size is bigger than space we know to use,
  4539.      get a bigger piece of space.  */
  4540.   if (size > max_structure_value_size)
  4541.     {
  4542.       max_structure_value_size = size;
  4543.       structure_value = assign_stack_local (BLKmode, size);
  4544.       if (GET_CODE (structure_value) == MEM)
  4545.     structure_value = XEXP (structure_value, 0);
  4546.     }
  4547.  
  4548.   return structure_value;
  4549. }
  4550.  
  4551. /* Walk the tree of LET_STMTs describing the binding levels within a function
  4552.    and warn about uninitialized variables.
  4553.    This is done after calling flow_analysis and before global_alloc
  4554.    clobbers the pseudo-regs to hard regs.  */
  4555.  
  4556. void
  4557. uninitialized_vars_warning (block)
  4558.      tree block;
  4559. {
  4560.   register tree decl, sub;
  4561.   for (decl = STMT_VARS (block); decl; decl = TREE_CHAIN (decl))
  4562.     {
  4563.       if (TREE_CODE (decl) == VAR_DECL
  4564.       /* These warnings are unreliable for and aggregates
  4565.          because assigning the fields one by one can fail to convince
  4566.          flow.c that the entire aggregate was initialized.
  4567.          Unions are troublesome because members may be shorter.  */
  4568.       && TREE_CODE (TREE_TYPE (decl)) != RECORD_TYPE
  4569.       && TREE_CODE (TREE_TYPE (decl)) != UNION_TYPE
  4570.       && TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE
  4571.       && DECL_RTL (decl) != 0
  4572.       && GET_CODE (DECL_RTL (decl)) == REG
  4573.       && regno_uninitialized (REGNO (DECL_RTL (decl))))
  4574.     warning_with_decl (decl,
  4575.                "`%s' may be used uninitialized in this function");
  4576.       if (TREE_CODE (decl) == VAR_DECL
  4577.       && DECL_RTL (decl) != 0
  4578.       && GET_CODE (DECL_RTL (decl)) == REG
  4579.       && regno_clobbered_at_setjmp (REGNO (DECL_RTL (decl))))
  4580.     warning_with_decl (decl,
  4581.                "variable `%s' may be clobbered by `longjmp'");
  4582.     }
  4583.   for (sub = STMT_SUBBLOCKS (block); sub; sub = TREE_CHAIN (sub))
  4584.     uninitialized_vars_warning (sub);
  4585. }
  4586.  
  4587. /* If this function call setjmp, put all vars into the stack
  4588.    unless they were declared `register'.  */
  4589.  
  4590. void
  4591. setjmp_protect (block)
  4592.      tree block;
  4593. {
  4594.   register tree decl, sub;
  4595.   for (decl = STMT_VARS (block); decl; decl = TREE_CHAIN (decl))
  4596.     if ((TREE_CODE (decl) == VAR_DECL
  4597.      || TREE_CODE (decl) == PARM_DECL)
  4598.     && DECL_RTL (decl) != 0
  4599.     && GET_CODE (DECL_RTL (decl)) == REG
  4600.     && ! TREE_REGDECL (decl))
  4601.       put_var_into_stack (decl);
  4602.   for (sub = STMT_SUBBLOCKS (block); sub; sub = TREE_CHAIN (sub))
  4603.     setjmp_protect (sub);
  4604. }
  4605.  
  4606. /* Generate RTL for the start of the function SUBR (a FUNCTION_DECL tree node)
  4607.    and initialize static variables for generating RTL for the statements
  4608.    of the function.  */
  4609.  
  4610. void
  4611. init_function_start (subr)
  4612.      tree subr;
  4613. {
  4614.   this_function = subr;
  4615.   cse_not_expected = ! optimize;
  4616.  
  4617.   /* We have not yet found a reason why a frame pointer cannot
  4618.      be omitted for this function in particular, but maybe we know
  4619.      a priori that it is required.
  4620.      `flag_omit_frame_pointer' has its main effect here.  */
  4621.   frame_pointer_needed = FRAME_POINTER_REQUIRED || ! flag_omit_frame_pointer;
  4622.  
  4623.   /* Caller save not needed yet.  */
  4624.   caller_save_needed = 0;
  4625.  
  4626.   /* No gotos have been expanded yet.  */
  4627.   goto_fixup_chain = 0;
  4628.  
  4629.   /* No stack slots have been made yet.  */
  4630.   stack_slot_list = 0;
  4631.  
  4632.   /* No invalid stack slots have been made yet.  */
  4633.   invalid_stack_slot = 0;
  4634.  
  4635.   /* No parm regs have been allocated.
  4636.      (This is important for output_inline_function.)  */
  4637.   max_parm_reg = FIRST_PSEUDO_REGISTER;
  4638.  
  4639.   /* Initialize the RTL mechanism.  */
  4640.   init_emit (write_symbols);
  4641.  
  4642.   /* Initialize the queue of pending postincrement and postdecrements,
  4643.      and some other info in expr.c.  */
  4644.   init_expr ();
  4645.  
  4646.   init_const_rtx_hash_table ();
  4647.  
  4648.   /* Decide whether function should try to pop its args on return.  */
  4649.  
  4650.   current_function_pops_args = RETURN_POPS_ARGS (TREE_TYPE (subr));
  4651.  
  4652.   current_function_name = DECL_PRINT_NAME (subr);
  4653.  
  4654.   /* Nonzero if this is a nested function that uses a static chain.  */
  4655.  
  4656.   current_function_needs_context
  4657.     = (DECL_CONTEXT (current_function_decl) != 0
  4658.        && TREE_CODE (DECL_CONTEXT (current_function_decl)) == LET_STMT);
  4659.  
  4660.   /* Set if a call to setjmp is seen.  */
  4661.  
  4662.   current_function_calls_setjmp = 0;
  4663.   current_function_calls_alloca = 0;
  4664.  
  4665.   current_function_returns_pcc_struct = 0;
  4666.   current_function_returns_struct = 0;
  4667.  
  4668.   /* No space assigned yet for structure values.  */
  4669.   max_structure_value_size = 0;
  4670.   structure_value = 0;
  4671.  
  4672.   /* We are not currently within any block, conditional, loop or case.  */
  4673.   block_stack = 0;
  4674.   loop_stack = 0;
  4675.   case_stack = 0;
  4676.   cond_stack = 0;
  4677.   nesting_stack = 0;
  4678.   nesting_depth = 0;
  4679.  
  4680.   /* We have not yet needed to make a label to jump to for tail-recursion.  */
  4681.   tail_recursion_label = 0;
  4682.  
  4683.   /* No stack slots allocated yet.  */
  4684.   frame_offset = STARTING_FRAME_OFFSET;
  4685.  
  4686.   /* No SAVE_EXPRs in this function yet.  */
  4687.   save_expr_regs = 0;
  4688.  
  4689.   /* No RTL_EXPRs in this function yet.  */
  4690.   rtl_expr_chain = 0;
  4691.  
  4692.   /* Within function body, compute a type's size as soon it is laid out.  */
  4693.   immediate_size_expand++;
  4694.  
  4695.   init_pending_stack_adjust ();
  4696.   inhibit_defer_pop = 0;
  4697.   current_function_pretend_args_size = 0;
  4698.  
  4699.   /* Prevent ever trying to delete the first instruction of a function.
  4700.      Also tell final how to output a linenum before the function prologue.  */
  4701.   emit_line_note (DECL_SOURCE_FILE (subr), DECL_SOURCE_LINE (subr));
  4702.   /* Make sure first insn is a note even if we don't want linenums.
  4703.      This makes sure the first insn will never be deleted.
  4704.      Also, final expects a note to appear there.  */
  4705.   emit_note (0, NOTE_INSN_DELETED);
  4706.   /* Indicate the beginning of the function body,
  4707.      as opposed to parm setup.  */
  4708.   emit_note (0, NOTE_INSN_FUNCTION_BEG);
  4709.  
  4710.   /* Set flags used by final.c.  */
  4711.   if (aggregate_value_p (DECL_RESULT (subr)))
  4712.     {
  4713. #ifdef PCC_STATIC_STRUCT_RETURN
  4714.       if (flag_pcc_struct_return)
  4715.     current_function_returns_pcc_struct = 1;
  4716.       else
  4717. #endif
  4718.     current_function_returns_struct = 1;
  4719.     }
  4720. }
  4721.  
  4722. /* Start the RTL for a new function, and set variables used for
  4723.    emitting RTL.
  4724.    SUBR is the FUNCTION_DECL node.
  4725.    PARMS_HAVE_CLEANUPS is nonzero if there are cleanups associated with
  4726.    the function's parameters, which must be run at any return statement.  */
  4727.  
  4728. void
  4729. expand_function_start (subr, parms_have_cleanups)
  4730.      tree subr;
  4731.      int parms_have_cleanups;
  4732. {
  4733.   register int i;
  4734.   tree tem;
  4735.  
  4736.   /* Make sure volatile mem refs aren't considered
  4737.      valid operands of arithmetic insns.  */
  4738.   init_recog ();
  4739.  
  4740.   /* If the parameters of this function need cleaning up, get a label
  4741.      for the beginning of the code which executes those cleanups.  This must
  4742.      be done before doing anything with return_label.  */
  4743.   if (parms_have_cleanups)
  4744.     cleanup_label = gen_label_rtx ();
  4745.   else
  4746.     cleanup_label = 0;
  4747.  
  4748.   /* Make the label for return statements to jump to, if this machine
  4749.      does not have a one-instruction return and uses an epilogue,
  4750.      or if it returns a structure, or if it has parm cleanups.  */
  4751. #ifdef HAVE_return
  4752.   if (cleanup_label == 0 && HAVE_return
  4753.       && ! current_function_returns_pcc_struct
  4754.       && ! (current_function_returns_struct && ! optimize))
  4755.     return_label = 0;
  4756.   else
  4757.     return_label = gen_label_rtx ();
  4758. #else
  4759.   return_label = gen_label_rtx ();
  4760. #endif
  4761.  
  4762.   /* Initialize rtx used to return the value.  */
  4763.   /* Do this before assign_parms so that we copy the struct value address
  4764.      before any library calls that assign parms might generate.  */
  4765.  
  4766.   /* Decide whether to return the value in memory or in a register.  */
  4767.   if (aggregate_value_p (DECL_RESULT (subr)))
  4768.     {
  4769.       /* Returning something that won't go in a register.  */
  4770.       register rtx value_address;
  4771.  
  4772. #ifdef PCC_STATIC_STRUCT_RETURN
  4773.       if (flag_pcc_struct_return)
  4774.     {
  4775.       int size = int_size_in_bytes (TREE_TYPE (DECL_RESULT (subr)));
  4776.       value_address = assemble_static_space (size);
  4777.       current_function_returns_pcc_struct = 1;
  4778.     }
  4779.       else
  4780. #endif
  4781.     {
  4782.       /* Expect to be passed the address of a place to store the value.  */
  4783.       value_address = gen_reg_rtx (Pmode);
  4784.       emit_move_insn (value_address, struct_value_incoming_rtx);
  4785.       current_function_returns_struct = 1;
  4786.     }
  4787.       DECL_RTL (DECL_RESULT (subr))
  4788.     = gen_rtx (MEM, DECL_MODE (DECL_RESULT (subr)),
  4789.            value_address);
  4790.     }
  4791.   else if (DECL_MODE (DECL_RESULT (subr)) == VOIDmode)
  4792.     /* If return mode is void, this decl rtl should not be used.  */
  4793. #if defined( DSP96000 ) || defined( DSP56000 )
  4794.     {
  4795.     current_func_info |= FUNC_RETURNS_VOID;
  4796.     DECL_RTL (DECL_RESULT (subr)) = 0;
  4797.     }
  4798. #else
  4799.     DECL_RTL (DECL_RESULT (subr)) = 0;
  4800. #endif
  4801.   else if (parms_have_cleanups)
  4802.     /* If function will end with cleanup code for parms,
  4803.        compute the return values into a pseudo reg,
  4804.        which we will copy into the true return register
  4805.        after the cleanups are done.  */
  4806.     DECL_RTL (DECL_RESULT (subr))
  4807.       = gen_reg_rtx (DECL_MODE (DECL_RESULT (subr)));
  4808.   else
  4809.     /* Scalar, returned in a register.  */
  4810.     {
  4811. #ifdef FUNCTION_OUTGOING_VALUE
  4812.       DECL_RTL (DECL_RESULT (subr))
  4813.     = FUNCTION_OUTGOING_VALUE (TREE_TYPE (DECL_RESULT (subr)), subr);
  4814. #else
  4815.       DECL_RTL (DECL_RESULT (subr))
  4816.     = FUNCTION_VALUE (TREE_TYPE (DECL_RESULT (subr)), subr);
  4817. #endif
  4818.  
  4819.       current_function_returns_pointer 
  4820.     = (TREE_CODE (DECL_RESULT_TYPE (subr)) == POINTER_TYPE);
  4821.  
  4822. #if defined( DSP96000 ) || defined( DSP56000 )
  4823.       /* let our epilog know if it should tst or ftst ! */
  4824.       if (( SFmode == GET_MODE ( DECL_RTL ( DECL_RESULT ( subr )))) ||
  4825.       ( DFmode == GET_MODE ( DECL_RTL ( DECL_RESULT ( subr )))))
  4826.       {
  4827.       current_func_info |= FUNC_RETURNS_FLOAT;
  4828.       }
  4829. #endif
  4830.  
  4831.       /* Mark this reg as the function's return value.  */
  4832.       if (GET_CODE (DECL_RTL (DECL_RESULT (subr))) == REG)
  4833.     REG_FUNCTION_VALUE_P (DECL_RTL (DECL_RESULT (subr))) = 1;
  4834.     }
  4835.  
  4836.   /* Initialize rtx for parameters and local variables.
  4837.      In some cases this requires emitting insns.  */
  4838.  
  4839.   assign_parms (subr);
  4840.  
  4841.   /* If doing stupid allocation, mark parms as born here.  */
  4842.  
  4843.   if (GET_CODE (get_last_insn ()) != NOTE)
  4844.     emit_note (0, NOTE_INSN_DELETED);
  4845.   parm_birth_insn = get_last_insn ();
  4846.  
  4847.   if (obey_regdecls)
  4848.     {
  4849.       for (i = FIRST_PSEUDO_REGISTER; i < max_parm_reg; i++)
  4850.     use_variable (regno_reg_rtx[i]);
  4851.     }
  4852.  
  4853.   /* After the parm initializations is where the tail-recursion label
  4854.      should go, if we end up needing one.  */
  4855.   tail_recursion_reentry = get_last_insn ();
  4856.  
  4857.   /* Evaluate now the sizes of any types declared among the arguments.  */
  4858.   for (tem = get_pending_sizes (); tem; tem = TREE_CHAIN (tem))
  4859.     expand_expr (TREE_VALUE (tem), 0, VOIDmode, 0);
  4860.  
  4861.   /* Make sure there is a line number after the function entry setup code.
  4862.      There normally is one anyway, from the following statement,
  4863.      but there could fail to be one if there is no newline here.  */
  4864.   force_next_line_note ();
  4865. }
  4866.  
  4867. /* Generate RTL for the end of the current function.
  4868.    FILENAME and LINE are the current position in the source file.  */
  4869.  
  4870. /* ??? Nobody seems to emit the cleanup_label and the cleanups themselves.  */
  4871.  
  4872. void
  4873. expand_function_end (filename, line)
  4874.      char *filename;
  4875.      int line;
  4876. {
  4877.   register int i;
  4878.   rtx decl;
  4879.   extern rtx sequence_stack;
  4880.  
  4881. #if 0  /* I think unused parms are legitimate enough.  */
  4882.   /* Warn about unused parms.  */
  4883.   if (warn_unused)
  4884.     for (decl = DECL_ARGUMENTS (current_function_decl);
  4885.      decl; decl = TREE_CHAIN (decl))
  4886.       if (! TREE_USED (decl) && TREE_CODE (decl) == VAR_DECL)
  4887.     warning_with_decl (decl, "unused parameter `%s'");
  4888. #endif
  4889.  
  4890.   /* End any sequences that failed to be closed due to syntax errors.  */
  4891.   while (sequence_stack)
  4892.     end_sequence (0);
  4893.  
  4894.   /* Outside function body, can't compute type's actual size
  4895.      until next function's body starts.  */
  4896.   immediate_size_expand--;
  4897.  
  4898.   /* If doing stupid register allocation,
  4899.      mark register parms as dying here.  */
  4900.  
  4901.   if (obey_regdecls)
  4902.     {
  4903.       rtx tem;
  4904.       for (i = FIRST_PSEUDO_REGISTER; i < max_parm_reg; i++)
  4905.     use_variable (regno_reg_rtx[i]);
  4906.  
  4907.       /* Likewise for the regs of all the SAVE_EXPRs in the function.  */
  4908.  
  4909.       for (tem = save_expr_regs; tem; tem = XEXP (tem, 1))
  4910.     {
  4911.       /* ??? Tiemann thinks this does not work.  */
  4912.       use_variable (XEXP (tem, 0));
  4913.       use_variable_after (XEXP (tem, 0), parm_birth_insn);
  4914.     }
  4915.     }
  4916.  
  4917.   clear_pending_stack_adjust ();
  4918.   do_pending_stack_adjust ();
  4919.  
  4920.   /* Mark the end of the function body.
  4921.      If control reaches this insn, the function can drop through
  4922.      without returning a value.  */
  4923.   emit_note (0, NOTE_INSN_FUNCTION_END);
  4924.  
  4925.   /* Output a linenumber for the end of the function.
  4926.      SDB depends on this.  */
  4927.   emit_line_note_force (filename, line);
  4928.  
  4929.   /* Output the label for the actual return from the function,
  4930.      if one is expected.  This happens either because a function epilogue
  4931.      is used instead of a return instruction, or because a return was done
  4932.      with a goto in order to run local cleanups, or because of pcc-style
  4933.      structure returning.  */
  4934.  
  4935.   if (return_label)
  4936.     emit_label (return_label);
  4937.  
  4938.   /* If we had calls to alloca, and this machine needs
  4939.      an accurate stack pointer to exit the function,
  4940.      insert some code to save and restore the stack pointer.  */
  4941. #ifdef EXIT_IGNORE_STACK
  4942.   if (! EXIT_IGNORE_STACK)
  4943. #endif
  4944.     if (current_function_calls_alloca)
  4945.       {
  4946.     rtx tem = gen_reg_rtx (Pmode);
  4947.     emit_insn_after (gen_rtx (SET, VOIDmode, tem, stack_pointer_rtx),
  4948.              parm_birth_insn);
  4949.     emit_insn (gen_rtx (SET, VOIDmode, stack_pointer_rtx, tem));
  4950.       }
  4951.  
  4952.   /* If scalar return value was computed in a pseudo-reg,
  4953.      copy that to the hard return register.  */
  4954.   if (DECL_RTL (DECL_RESULT (current_function_decl)) != 0
  4955.       && GET_CODE (DECL_RTL (DECL_RESULT (current_function_decl))) == REG
  4956.       && (REGNO (DECL_RTL (DECL_RESULT (current_function_decl)))
  4957.       >= FIRST_PSEUDO_REGISTER))
  4958.     {
  4959.       rtx real_decl_result;
  4960.  
  4961. #ifdef FUNCTION_OUTGOING_VALUE
  4962.       real_decl_result
  4963.     = FUNCTION_OUTGOING_VALUE (TREE_TYPE (DECL_RESULT (current_function_decl)),
  4964.                    current_function_decl);
  4965. #else
  4966.       real_decl_result
  4967.     = FUNCTION_VALUE (TREE_TYPE (DECL_RESULT (current_function_decl)),
  4968.               current_function_decl);
  4969. #endif
  4970.       REG_FUNCTION_VALUE_P (real_decl_result) = 1;
  4971.       emit_move_insn (real_decl_result,
  4972.               DECL_RTL (DECL_RESULT (current_function_decl)));
  4973.       emit_insn (gen_rtx (USE, VOIDmode, real_decl_result));
  4974.     }
  4975.  
  4976.   /* If returning a structure, arrange to return the address of the value
  4977.      in a place where debuggers expect to find it.  */
  4978.   /* If returning a structure PCC style,
  4979.      the caller also depends on this value.
  4980.      And current_function_returns_pcc_struct is not necessarily set.  */
  4981.   if (current_function_returns_struct
  4982.       || current_function_returns_pcc_struct)
  4983.     {
  4984.       rtx value_address = XEXP (DECL_RTL (DECL_RESULT (current_function_decl)), 0);
  4985.       tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
  4986. #ifdef FUNCTION_OUTGOING_VALUE
  4987.       rtx outgoing
  4988.     = FUNCTION_OUTGOING_VALUE (build_pointer_type (type),
  4989.                    current_function_decl);
  4990. #else
  4991.       rtx outgoing
  4992.     = hard_function_value (build_pointer_type (type),
  4993.                    current_function_decl);
  4994. #endif
  4995.  
  4996.       REG_FUNCTION_VALUE_P (outgoing) = 1;
  4997.       emit_move_insn (outgoing, value_address);
  4998.       use_variable (outgoing);
  4999.     }
  5000.  
  5001.   /* Output a return insn if we are using one.
  5002.      Otherwise, let the rtl chain end here, to drop through
  5003.      into the epilogue.  */
  5004.  
  5005. #ifdef HAVE_return
  5006.   if (HAVE_return)
  5007.     emit_jump_insn (gen_return ());
  5008. #endif
  5009.  
  5010.   /* Fix up any gotos that jumped out to the outermost
  5011.      binding level of the function.
  5012.      Must follow emitting RETURN_LABEL.  */
  5013.  
  5014.   /* If you have any cleanups to do at this point,
  5015.      and they need to create temporary variables,
  5016.      then you will lose.  */
  5017.   fixup_gotos (0, 0, 0, get_insns (), 0);
  5018. }
  5019.